* {
    --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;
    margin-top: 10px;
    height: calc(100vh - 200px - 15vh - 10px);
} #Conections {
    margin-right: 5px;
    border:  5px solid var(--color1);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 25px 0 0;
    padding-left: 8px;
    background-color: var(--lightcolor);
    width: calc(35vw - 5px - 8px);
    height: 100%;
} #ConnectDiscordIcon {
    width: 50px;
    height: auto;
} #CurrentOCT {
    margin-left: 5px;
    border:  5px solid var(--color1);
    border-right: 0;
    border-bottom: 0;
    border-radius: 25px 0 0 0;
    padding-left: 8px;
    background-color: var(--lightcolor);
    width: calc(20vw - 5px - 8px);
    height: 100%;
} h2 {
    color: var(--color2);
} h3 {
    color: var(--color2);
} #CurrentOCTMobile {
    display: none;
} #NewsFeed {
    width: calc(45vw - 20px);
    height: 100%;
    overflow: scroll;
} .NewsPost {
    border:  5px solid var(--color1);
    margin-bottom: 25px;
    border-radius: 25px;
    padding-left: 8px;
    background-color: var(--lightcolor);
    width: calc(100% - 18px);
    height: 20vw;
    overflow: hidden;
}

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;
}
#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;
    } #Conections {
        display: none;
    } #CurrentOCT {
        display: none;
    } footer {
        display: none;
    } #NewsFeed {
        position: fixed;
        top: 25vw;
        width: 100vw;
        height: calc(100vh - 15vh - 25vw);
    } .NewsPost {
        height: 30vh;
    } #MobileHeader {
        display: initial; 
    } #MobileHeaderVisible {
        position: fixed;
        top: 0;
        z-index: 5;
        background-color: var(--color2);
        width: 100vw;
        height: 25vw;
    } #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;
    }
}