@font-face {
    font-family: mine;
    src: url(./kajiro/Kajiro/Kajiro\ Bold.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    width: 100%;
    height: 100vh;
    
}
#back{
    pointer-events: all;
    width: 100%;
    height: 100vh;
}
#back img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
#top{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

}
#work{
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 100vh;
    max-width: 1920px;
    
}
#nav{
    pointer-events: all;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
    height: 10vh;
}
#nleft a{
    text-decoration: none;
    color: white;
    font-family: "candara";
    font-weight: 600;
    font-size: 16px;
}
#nright a{
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    font-family: "candara";
}
#hero{
    position: absolute;
    top: 50%;
    transform: translate(0%,-50%);
    left: 0;
    display: flex;
    justify-content: space-between;
    width:100%;
    

}
#heroleft{
    min-width: 50%;
    
}
#heroleft .elem{
    overflow: hidden;
    position: relative;
    height: 9vw;
}

#heroright{
    min-width: 25%;
    height: 100px;
    
}


#heroleft .elem h1{
    position: absolute;
    top: 100%;
    left: 0;
    line-height: 0.9;
    font-family: "mine";
    color: white;
    font-weight: 100;
    font-size: 9vw;
}
#heroleft .elem h1:nth-child(1){
     top: 0;
}
#heroleft button{
    pointer-events: all;
    margin-top: 2vw;
    padding: .8vw 3vw;
    font-size: 3vw;
    font-family: "mine";
}
button a{
    text-decoration: none;
    color: black;
}