@import url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');
/*
@font-face {
    font-family: 'Underdog';
    src: url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');
}

@font-face {
    font-family: 'VT323', monospace;
    src: url("./fonts/VT323-Regular.ttf") format("truetype");
    src: url("./fonts/VT323-Regular.ttf?#iefix") format("truetype"),
        url("./fonts/VT323-Regular.eot") format("embedded-opentype"),
        url("./fonts/VT323-Regular.otf") format("opentype");
}
*/

* {
    font-family: 'Underdog';
    color: white;
    background-color: black;
}

body,
html { overflow-x: hidden; }

.hide{
    display:none;
}

#cookies_check{
    font-size: 350%;
    border: 0.05in solid white;
    bottom: 5%;
    position:fixed;
}

#cookies_check input{
    font-size: xx-large;
    width: 0.6in;
    height: 0.6in;
}

button{
    font-size: 350%;
    border: 0.05in solid white;
}

.header1{
    font-size: 500%;
}

p{
    font-size: 350%;
}

p+.footer{
    font-size: 225%;
}

.footer{
    font-size: 225%;
}

.top_nav{
    display:flex;
    font-size: 500%;
    text-align: left;
    vertical-align: top;
    border: 0.05in solid white;
}

.button{
    border: 0.05in solid white;
}

.info_box{
    border: 0.1in solid white;
}

.info_data{
    font-size: 350%;
}

#screen_overlay{
    position:fixed;
    display: block;
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 2;
}

img{
    border: 0.05in solid white;
    width: 90%;
    height: auto;
    image-rendering: pixelated;
}

.info_data + a{
    font-size: 350%;
}

.info_box + .header1{
    border: 0.1in solid white;
}

.tab{
    font-size: 100%;
    text-indent: 5%;
}

.tab + .tab {
    font-size: 100%;
    text-indent: 10%;
}

.tab + .tab + .tab {
    font-size: 100%;
    text-indent: 15%;
}

.tab + .tab + .tab + .tab {
    font-size: 100%;
    text-indent: 20%;
}

.header_scroll_text {
    position: absolute;
    width: 100%;
    padding: 25px 0;
    color: white;
    font-size: 200%;

    border: 0.05in solid white;
}

.header_scroll_text_content {
    display: block;
  
    width: 100%;
    transform: translateX(100%);
    animation: move 30s linear infinite 
}

@keyframes move {
to { transform: translateX(-100%); }
}