
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style:none;
    text-decoration: none;
    font-family: "Fira Code", monospace;
    font-weight: 100;
    letter-spacing: -.05em;
    list-style: none;
    color: var(--main-text);
}

html, body {
    width: 100%;
    height: 100%;
    background-color: rgba(217, 218, 192);
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.container{
    display: flex;
    width: 95%;
    justify-content: space-between;
    align-items: center;
}

nav ul{
    display: flex;
    width: 200px;
    justify-content: space-between;
}

.main_title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 30vh;
    display: flex;
    justify-content: center;
}

.hero_text{
   width: 95%;
}

.sub_title{
    display: flex;
    justify-content: space-between;
}

.paragraph{
    display: flex;
    width:200px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


canvas {
    position: relative;
    z-index: 0;
}

.hero{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.hero_canvas {
    z-index: 0;
}

.desc{
    position: absolute;
    bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.desc p{
    grid-column: 1 / span 3;
    font-size: .8rem;
}

.splash_screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.splash_screen.complete {
    pointer-events: none;
}

.left{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #161616;
    transition: transform 1s;
}

.left.active{
    transform: translateX(-100%);
    border-right: 1px solid white;
}

.right{
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #161616;
    transition: transform 1s;
}

.right.active{
    transform: translateX(100%);
    border-left: 1px solid white;
}

.progress_bar{
    position: absolute;
    transform: translateX(-50%);
    transition: height 1s;
    width: 1px;
    bottom: 0;
    left: 50%;
    height: 0%;
    background-color: white;
}

.progress_bar.complete{
    opacity:0;
}

.percentage{
    position: absolute;
    bottom: 0;
    left: 1rem;
    color: white;
}



@media screen and (max-width: 600px){
   h1{
    font-size: 1.5rem;
   }
}






























