/* @import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&display=swap');
:root{
    --neutral-950 : #0A0A0A;
    --neutral-800: #262626;
}

html, body{
    margin: 0;
    min-height: 100%;
    background-color: var(--neutral-950);
}

*, *::before, *::after{
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    /* font-family: 'TASA Orbiter', sans-serif; */
    font-family: 'Barlow Condensed', sans-serif;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px);
    background-size: 2px 100%, 2px 100%, 2px 100%, 2px 100%, 100% 2px, 100% 2px;
    background-position: 20% 0, 40% 0, 60% 0, 80% 0, 0 33.333333%, 0 66.666666%;
    background-repeat: no-repeat;
}

@media (max-width: 1200px){
    body::before{
        background-image:
            repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px);
        background-size: 2px 100%, 2px 100%, 2px 100%, 100% 2px, 100% 2px;
        background-position: 25% 0, 50% 0, 75% 0, 0 33.333333%, 0 66.666666%;
        background-repeat: no-repeat;
    }

    html {
        font-size: 14px;
    }
}

@media (max-width: 768px){
    body::before{
        background-image:
            repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to bottom, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px),
            repeating-linear-gradient(to right, var(--neutral-800) 0 8px, transparent 8px 16px);
        background-size: 2px 100%, 2px 100%, 100% 2px, 100% 2px;
        background-position: 33.333333% 0, 66.666666% 0, 0 33.333333%, 0 66.666666%;
        background-repeat: no-repeat;
    }
}

/* Menu */
.menu{
    position: absolute;
    top: 4px;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.menulogo{
    font-size: 2.5rem;
    padding-left: 10px;
}

.menuitems{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-size: 1.5rem;
    padding-right: 10px;
}

.menuitems > div:hover{
    text-decoration: none;
    color: #FFDF20;
}

/* Heading */
.head{
    position: absolute;
    top: 10vh; 
    margin-left: 1rem;
    color: white;
    font-size: 4rem;
}

/* Container */

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 80vh);
    aspect-ratio: 1;
    overflow: hidden;
}
        
.layer {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
        
.base {
    z-index: 10;
    background-image: url('/Assets/home.png');
}
        
.reveal {
    z-index: 30;
    background-image: url('/Assets/home1.png');
    pointer-events: none;
}
        
canvas { display: none; }

/* Enter */
.enter{
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
}

.enter:hover{
    text-decoration: none;
    color: #53EAFD;
}

/* Story Engine */

.system{
    color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1rem;
}

.systemtop{
    display: flex;
    flex-direction: row;
    margin: 0;
} 

.systemtop p{
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.engage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5px;
}

.engage p{
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.engage img{
    margin: 0;
    height: 1rem;
    width: auto;
}

.systembottom{
    display: flex;
    flex-direction: row;
    margin: 0;
}

.stream img{
    margin: 0;
    height: 13rem;
    width: auto;
}

.stages{
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}

.stages p{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.stages img{
    margin: 0;
    height: 1.5rem;
    width: auto;
}

@media (max-width: 768px){
    .container {
        top: 55%;
    }
    
    .enter{
        bottom: 15vh;
    }

    .system{
        display: none;
    }

    html, body {
        overflow-x: hidden;
    }
}