*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: satoshi;
    src: url(Satoshi-Variable.ttf);
}

body{
    font-family: satoshi;
    font-size: 13px;
}

.nav-desktop{
    box-sizing: border-box;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
}

.nav-column-three{
    display: flex;
    justify-content: space-between;
}


.menu-burger{
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 2;
}

.hero-section{
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.hero-circle{
    width: 100%;
}

.hero-media{
    width: 100%;
    height: 100%;
}

.webgl{
    width: 100%;
    height: 100%;
}

.hero-subtitle{
    padding-right:20px;
    font-size: 20px;
}

.hero-title-svg{
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
}

.hero{
    height: 100vh;
}

section{
    display: flex;
    flex-direction: column;
}

.project-content{
    padding: 15px;
    box-sizing: border-box;
}

.project-image{
    width: 100%;
    object-fit: contain;
}

.project-video{
    width: 100%;
    object-fit: contain;
}

.menu-drawer-desktop{
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2;
    overflow: scroll;
    display: none;
}

.menu-drawer-inner{
    box-sizing: border-box;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
}

.menu-drawer-column-three{
    display: flex;
    justify-content: space-between;
}

.menu-close{
    position: fixed;
    right: 15px;
}

.project-thumbnail{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    display: none;
}

@media only screen and (max-width: 600px) {

    body{
        font-size: 11px;
    }

    .hero-content{
        grid-template-columns: 1fr 1fr;
        
    }

    .hero-subtitle{
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        font-size: 16px;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .hero-body{
        grid-column: 2 / 3;
        grid-row: 3 / 4;  
    }

    .nav-desktop{
        display: block;
    }

    .menu-burger{
        top: 15px;
    }

    .menu-drawer-inner{
        display: block;
    }

    .menu-close{
        top: 15px;
    }
}