<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&amp;display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web';
}

#mobile_nav{
    display: none;
}

#mobile_menu{
    display: none;
}

.console {
    font-family: 'Red Hat Mono';
}

.raise {
    transform: translateY(-60%);
    -webkit-transform: translateY(-60%);
    -moz-transform: translateY(-60%);
}

.lower {
    transform: translate(60%) ;
    -webkit-transform: translate(60%);
    -moz-transform: translate(60%);
}

.hide {
    opacity: 0;
    pointer-events: none;
}

#header{
    background-color: #222222;
    height: 100px;
    position: relative;
    text-align: right;
    font-size: 0;
}

#header_logo{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    transition: all 1s cubic-bezier(.17,.78,.51,.97);
    transform: rotateZ(0deg);
}

#header_logo:hover {
    transform: rotateZ(360deg);
    cursor: pointer;
}

.header_item {
    height: 100%;
    width: 150px;
    background-color: #222222;
    display: inline-block;
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

.header_item:hover {
    background-color: #333333;
    cursor: pointer;
}


#footer {
    width: 100%;
    height: 100px;
    position: relative;
    background-color: #222222;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: white;
  }
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  #footer{
    position: relative;
}

#footer_icons{
    display: flex;
    position: absolute;
    top: 25px;
}

#footer_icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background-color: #222222;
    padding: 5px;
    margin-left: 10px;
    border-radius: 10px;
    transition: all 0.25s;
}

#footer_icons img:hover {
    cursor: pointer;
    background-color: #333333;
}

#footer_text{
    position: absolute;
    text-align: right;
    right: 10px;
    top: 35px;
}

#footer_text p{
    display: inline;
    color: white;
}

#footer_text a{
    color: white;
    text-decoration: none;
}

::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    }
    ::-webkit-scrollbar-thumb{
    background: #222222;
    border-radius: 0px;
    }
    ::-webkit-scrollbar-thumb:hover{
    background: #444444;
    }
    ::-webkit-scrollbar-track{
    background: #111111;
    border-radius: 0px;
    box-shadow: inset 0px 0px 0px 0px #F0F0F0;
    }

#loading_status{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 200;
    text-align: center;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    width: 20vh;
    height: 20vh;
}

#loading_error p {
    color: white;
    font-size: 3vh;
    line-height: 5vh;
    padding: 0 5vw;
    margin: 0;
}

#loading_error img {
    filter: invert();
    width: 20vh;
    height: 20vh;
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-top: 30vh;
}

@media only screen and (max-width: 1000px){
    #mobile_menu{
        display: inline-block;
    }
    
    #desktop_controls{
        display: none;
    }

    #footer_text{
        text-align: center;
        position: relative;
        font-size: 10px;
        top: 65px;
        width: 100vw;
        right: 0;
    }

    #footer_icons{
        top: 10px;
        left: 0;
        width: calc(100vw - 10px);
        justify-content: space-around;
    }

    #mobile_menu{
        filter: invert();
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-top: 20px;
        margin-right: 15px;
    }

    #mobile_nav{
        position: absolute;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        z-index: 50;
        background-color: black;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        text-align: center;
        transition: all 0.3s;
    }

    #mobile_nav a{
        color: white;
        text-decoration: none;
        font-size: 10vw;
    }

    #mobile_nav img{
        filter: invert();
        position: absolute;
        top: 20px;
        right: 10px;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
}</pre></body></html>