@font-face {
    font-family: nb;
    src: url(./SuisseIntl-Regular.ttf);
}


*{
    box-sizing: border-box;
    font-family: nb;
}

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

#page1{
    height: 100vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    position: relative;

}

#cursor{
    height: 6vw;
    width: 6vw;
    background-color: #FF5F38;
    border-radius: 50%;
    position: fixed;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

#cursor h5{
    font-size: 1vw;
    font-weight: 600;

}

#page1 video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 60%;
}

#page1-content{
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* background: #00000073; */
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3vw 3vw;
}

nav h3{
    font-size: 1.4vw;
    font-weight: 100;
}
nav h4{
    font-size: 1.4vw;
    font-weight: 100;
}

#page1-content h1{
    font-family: nk;
    font-size: 27vw;
    font-weight: 100;
    line-height: 27vw;
}

#page1-content h1 span{
    font-family: nk;
}

#page2{
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 255, 248);
    padding: 3vw;
}

#page2 h1{
    font-size: 4vw;
}
