body {
    background-color: black;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: black;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 9vmin;
    color: #F6E5C2;
    z-index: 1;
}

a {
    color: #F6E5C2;
    text-decoration: none;
}

a:hover {
    font-weight: normal;
    text-decoration: none;
    font-style: italic;
}

footer {
    display: none;
}

@media screen and (orientation:landscape) {
    h1 {
        position: absolute;
        bottom: 11%;
        right: 5%;
    }
    #navdesk {
        position: absolute;
        top: auto;
        right: 2.8%;
        text-align: right;
        z-index: 2;
    }
    #apollo {
        height: 99vh;
        position: absolute;
        left: 0;
        z-index: 0;
    }
    #apollo img {
        height: inherit;
    }
    #gates {
        display: none;
    }
    #navmob {
        display: none;
    }
}

@media screen and (orientation:portrait) {
    h1 {
        position: absolute;
        margin: auto;
        right: 0;
        left: 0;
        bottom: 11vh;
        font-size: 3.3max;
        text-align: center;
    }
    #navdesk {
        display: none;
    }
    #apollo {
        display: none;
    }
    #gates {
        width: 95vw;
        position: absolute;
        top: 0;
        left: 0;
    }
    #gates img {
        width: inherit;
    }
    #navmob {
        position: absolute;
        margin: auto;
        width: 100vmin;
        text-align: center;
        bottom: 3vmax;
    }
    a {
        font-size: 2vh;
        line-height: 202%;
    }
}