:root{
    --window: 100vw;
    --window_height: 100vh;
    --master-padding: 5em;
    --mobile-margin: 0%;
    --mobile-padding: 0.25em;
    --mobile-padding-inactive: 1em;

    --text: #fff;
    --tagline_text: #fff8;
    --sb_header: #fffa;
    --sb_link: #fff;

    --sb_link_hover: #0002;
    --sb_size: calc((var(--window)-(var(--master-padding)*2))/5);
    --work_height: calc(100vh-(var(--master-padding)*2));

    --white: #fff;
    --blue: #67f;
    --black: #223;

    --hud_transition_in: 0.5s;
    --hud_transition_out: 1s;
}

.electrical-box{
    transform: translate(36in);
}

html{
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'JetBrains Mono', monospace;
    background-color: #000;
    background-image: url('images/starchild.png');
    background-position: center;
    filter: blur(0.6px);
}
#tagline{
    font-size: 0.5em;
    color: var(--tagline_text);
    font-weight: normal;
}
body{
    margin: 0;
    padding: var(--master-padding);
    padding-top: calc(var(--master-padding) - 1.5em);
    width: calc(var(--window)-(var(--master-padding)*2));
    overflow-x: hidden;
    color: var(--text);
}
.inwrap{
    background-color: #0000;
}

html::-webkit-scrollbar{
    display: none;
}

*::selection{
    background-color: #fff2;
    text-shadow: 0px 0px 10px;
}
.line{
    border-top: 1px solid #fff3;
    margin: 1em 0em;
}

a:link{
    color: var(--blue);
    background-color: #f420;
    text-decoration: none;
    font-weight: bold;

    transition: all 0.25s ease;
}
a:visited{
    color: var(--blue);
    background-color: #f420;
    text-decoration: none;
    font-weight: bold;

    transition: all 0.25s ease;
}
a:hover{
    background-color: var(--blue);
    color: #223;

    transition: all 0.25s ease;
}

#demo_button{
    font-family: 'JetBrains Mono', monospace;
    font-size: 32;
    color: #fff;
    background-color: #0000;
    border: none;
    border-left: solid 0px #fff0;

    position: fixed;
    left: calc(50% - 60px);
    top: 45%;
    
    transition: all 0.25s;
}
#demo_button:hover{
    text-shadow: 10px;
    border-left: solid 4px #fff;
    left: calc(50% - 64px);
    transition: all 0.25s;
}

#demo_button:active{
    text-shadow: 10px;
    border-left: solid 8px #fff;
    left: calc(50% - 68px);
    transition: all 0.05s;
}

.seek{
    -webkit-appearance: none;
    appearance: none;

    position: fixed;
    left: calc(25%);
    top: 52%;
    height: 4px;
    width: 50%;
    background-color: #fff2;

    overflow: hidden;
    transition: all 0.25s ease;
}

.seek:hover{
    top: calc(52% - 2px);
    height: 8px;

    transition: all 0.25s ease;
}

.seek::-moz-range-thumb {
    width: 4px;
    height: 8px;

    border: 0px solid #fff0;
    box-shadow: -1000px 0px 0px 1000px #fff;
    overflow: hidden;
    background-color: #fff;
}

.seek::-webkit-slider-thumb{
    width: 4px;
    height: 16px;

    border: 0px solid #fff0;
    box-shadow: -1000px 0px 0px 1000px #fff;
    overflow: hidden;
    background-color: #fff;
}



#version {
    position: fixed;
    left: 1.5em;
    bottom: 1.1em;
    z-index: -10;
    color: #fff3;
}


@media (max-width: 1390px) {
    .parent {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 2em;
    }
}

@media (max-width: 930px) {
    :root{
        --window: 100vw;
        --master-padding: 1.5em;
        --mobile-margin: 5%;
        --mobile-margin-inactive: 7%;
    }
    html{
        background-position: fixed;
    }
    h1{
       padding: 0.5em 0em 0em 0.5em; 
    }

    .seek{
        -webkit-appearance: none;
        appearance: none;

        position: fixed;
        left: calc(25%);
        top: 54%;
        height: 16px;
        width: 50%;
        background-color: #fff2;

        overflow: hidden;
        transition: all 0.25s ease;
    }

    .seek:hover{
        top: calc(54% - 0px);
        height: 16px;

        transition: all 0.25s ease;
    }

    .seek::-moz-range-thumb {
        width: 4px;
        height: 16px;

        border: 0px solid #fff0;
        box-shadow: -1000px 0px 0px 1000px #fff;
        overflow: hidden;
        background-color: #fff;
    }

    .seek::-webkit-slider-thumb{
        width: 4px;
        height: 16px;

        border: 0px solid #fff0;
        box-shadow: -1000px 0px 0px 1000px #fff;
        overflow: hidden;
        background-color: #fff;
    }
}