* {
    --lightcolor: #eeeeff;
    --darkcolor: #182541;
    --color1: #7c69cf;
    --color2: #2073B6;
    --color3: rgb(49, 62, 112);
} @keyframes MenuBGMoveIn {
    0% {top: -100vh;}
    100% {top: 0;}
} @keyframes MenuBGMoveOut {
    0% {top: 0;}
    100% {top: -100vh;}
} @keyframes NavMoveIn {
    0% {left: -100vw;}
    100% {left: 1vw;}
} @keyframes NavMoveOut {
    0% {left: 1vw;}
    100% {left: -100vw;}
} @keyframes ButtonMoveIn {
    0% {right: -100vw;}
    100% {right: 1vw;}
} @keyframes ButtonMoveOut {
    0% {right: 1vw;}
    100% {right: -100vw;}
} .MenuBGIn {
    animation-name: MenuBGMoveIn;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
} .NavIn {
    animation-name: NavMoveIn;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    /*animation-delay: .51s;*/
    animation-fill-mode: forwards;
} .ButtonIn {
    animation-name: ButtonMoveIn;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    /*animation-delay: .51s;*/
    animation-fill-mode: forwards;
} .ButtonOut {
    animation-name: ButtonMoveOut;
    animation-duration: .5s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
} .NavOut {
    animation-name: NavMoveOut;
    animation-duration: .5s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
} .MenuBGOut {
    animation-name: MenuBGMoveOut;
    animation-duration: .5s;
    animation-timing-function: ease-in;
    /*animation-delay: .51s;*/
    animation-fill-mode: forwards;
}

body {
    background-color: var(--color3);
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
} #DesktopHeader {
    position: relative;
    height: 200px;
} #DesktopHeader > a {
    position: absolute;
    z-index: 5;
    bottom: 5px;
    left: 50px;
} #MainIconImage {
    width: 300px;
    height: 150px;
} #DesktopHeader nav {
    position: absolute;
    bottom: 0;
    background-color: var(--color1);
    color: var(--lightcolor);
    font-size: 20px;
    padding-left: 400px;
    width: calc(100vw - 400px);
} #DesktopHeader ul {
    display: flex;
    flex-direction: row;
    width: calc(100vw - 500px);
    justify-content: space-around;
    list-style-type: none;
} #DesktopHeader li a {
    color: var(--lightcolor);
    text-decoration: none;
    font-weight: bold;
} #MobileHeader {
    display: none;
} #Main {
    /*display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: calc(100vh - 200px - 15vh - 10px);*/
    margin-top: 10px;
    margin-bottom: 15vh;
} h2 {
    color: var(--color2);
} h3 {
    color: var(--color2);
} #textbox {
    /*display: flex;
    flex-direction: column;*/
    width: 50vw;
    margin: auto;
} .octinfo {
    border:  5px solid var(--color1);
    margin-bottom: 25px;
    border-radius: 25px;
    padding: 8px;
    background-color: var(--lightcolor);
} #CurrentOCTMobile {
    display: none;
} footer {
    position: fixed;
    bottom: 0;
    background-color: var(--darkcolor);
    color: var(--lightcolor);
    width: 100vw;
    height: 15vh;
} footer p {
    margin-bottom: 0;
    text-align: center;
} footer br {
    height: 0;
} footer a {
    color: var(--lightcolor);
    text-decoration: none;
} footer a:hover {
    color: #aaaaaa;
    text-decoration: none;
}
#FooterLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100vw;
} #FooterLinks img {
    margin: 0 15px;
    width: 25px;
    height: auto;
}

@media only screen and (max-width: 900px) {
    #DesktopHeader {
        display: none;
    } footer {
        display: none;
    } #MobileHeader {
        display: initial; 
    } #MobileHeaderVisible {
        position: fixed;
        top: 0;
        z-index: 5;
        background-color: var(--color2);
        width: 100vw;
        height: 25vw;
    } #Main {
        margin-top: calc(25vw + 10px);
        margin-bottom: 20vh;
    } #textbox {
        width: 90vw;
        margin: auto;
    } #CurrentOCTMobile {
        display: initial;
        position: fixed;
        bottom: 0;
        z-index: 5;
        width: 100vw;
        height: 15vh;
        background-color: var(--color2);
        color: var(--darkcolor);
    } #CurrentOCTMobile h2 {
        color: var(--darkcolor);
    } #CurrentOCTMobile h3 {
        color: var(--darkcolor);
    } #CurrentOCTMobile div {
        position: absolute;
        text-align: right;
        top: 5vh;
        right: 5px;
    } #Menu {
        position: fixed;
        right: 2vw;
        top: 13vw;
        z-index: 10;
        background-color: transparent;
        border: 0;
    } #Menu img {
        width: 10vw;
        height: auto;
    } #MenuBG {
        position: fixed;
        top: -100vh;
        z-index: 15;
        background-color: var(--color2);
        width: 100vw;
        height: 100vh;
    } #MenuClose {
        position: fixed;
        right: -100vw;
        top: 13vw;
        z-index: 20;
        background-color: transparent;
        border: 0; 
    } #MenuClose img {
        width: 10vw;
        height: auto;
    } #MobileHeaderHidden nav {
        position: fixed;
        display: flex;
        flex-direction: column;
        left: -100vw;
        top: 15vw;
        z-index: 20;
        color: var(--lightcolor);
    } #MobileHeaderHidden nav ul {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        list-style-type: none;
        font-size: 5vh;
    } #MobileHeaderHidden nav a{
        color: var(--lightcolor);
        text-decoration: underline;
    } #MobileHeaderHidden nav img{
        width: 10vw;
        height: auto;
        margin: 10px;
    } #iconbox {
        display: flex;
        flex-direction: row;
    }
}