html {
    height: 100%;
    margin: 0;
}

body {

}
  


body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    margin : 0;
    background-color: black;
    
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
.logo {

    text-align: center;
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    color: white;
}

.contact {
    font-size: 1.5vw;
    color: white;
    position: absolute;
    right: 2%;
    bottom: 2%;
    text-align: right;
}

.footnote {
    position: absolute;
    text-align: left;
    left: 2%;
    bottom: 2%;
    color: gray;
    font-size: 0.8vw;;
}

img {
    object-fit: contain;
    max-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
}

@media all and (min-width:0px) and (max-width: 750px) {
    img {
        object-fit: contain;
        max-width: 100%;
        min-height: 30%;
        width: auto;
        height: auto;
        position: fixed;
        bottom: 50%;
    }

    .logo {
        top: 33%;
    }

    .contact {
        font-size: 2em;
        color: white;
        right: unset;
        position:absolute;
        text-align: center;
        margin: auto;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
  }