*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
*::selection{
    background-color: black;
    color: white;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    background-color: #f7f7f7;
}
#page1{
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 0 1vw;
    padding-top: 19vh;
}
#page1 h1{
    font-size: 15.6vw;
    font-family: futura;
    line-height: 14vw;
    letter-spacing: -5px;
}
#video-container{
    height: 100vh;
    width: 100%;
    background-color: grey;
    margin-top: 1vw;
    position: relative;
}
#video-container video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#video-container #play{
    position: fixed;
    font-size: 1.3vh;
    padding: 1vw 0.5vw;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-family: futura;
    transform: translate(-50%,-50%) scale(0);
}
#page2{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw 1vw;
}
#page2 .elem{
    width: 31%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#page2 .elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    scale: 1.1;
}
.elem .dets{
    border-radius: 50px;
    height: 50px;
    width: 70%;
    position: absolute;
    z-index: 9;
    background-color: rgb(235, 147, 223);
}
#page3{
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.child{
    height: 54vh;
    width: 38vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child img{
    width: 100%;
    height: 100%;
}
#cursor{
  height: 250px;
  width: 250px;
  position: fixed;
  border-radius: 50%;
  background-color: rgb(189, 186, 186);
  transform: translate(-50%,-50%) scale(0);
}
#nav{
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#nav1{
    height: 82px;
    overflow: hidden;
}
#nav1 svg{
    display: block;
}
#nav #nav2{ 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#links{
    padding: 10px;
}
#nav2 #links a{
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    margin: 0 20px;
}
#icons{
    padding: 10px;
    border-radius: 50px;
    background-color: #f7f7f7;
}
#nav2 #icons i{
    margin:0 20px;
    font-size: 18px;
    font-weight: 100;
}
@media (max-width:600px){
    #page1{
        min-height: 70vh;
        width: 100%;
        padding: 0 3vw;
        padding-top: 25vh;
    }
    #page1 h1{
        font-size: 15.5vw;
        letter-spacing: -3px;
    }
    #video-container{
        height: 35vh;
        margin-top: 3vw;
    }
    #page2{
        min-height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 5vw 3vw;
    }
    #page2 .elem{
        width: 100%;
        height: 100vh;
        overflow: hidden;
        margin-bottom: 3vw;
    }
}