*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::selection{
    color: #fff;
    background-color: black;
}
html,body{
    height: 100%;
    width: 100%;
    background-color: #F7F7F7;
}
#page1{
    min-height: 100vh;
    position: relative;
    width: 100%;
    padding:  0 1vw;
    padding-top: 13vw;

}
#page1 h1{
    padding-left: 20px;
    font-family: "Futura";
    font-size: 15.6vw;
    text-transform: uppercase;
    line-height: 14vw;
    letter-spacing: -8px;
}
#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 {
    padding: 3vw 2.2vw;
    background-color: black;
    color: #fff;
    font-size: 1.3vw;
    position: fixed;
    text-transform: uppercase;
    font-family: futura;
    border-radius: 50%;
    opacity: 0;
    scale: 0;
}
#page2{
    min-height: 100vh;
    width: 100%;
    /* background-color: antiquewhite; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw;
}
#page2 .elem{
    height: 105%;
    width: 32%;
    /* background-color: black; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page2 .elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}
.elem .details{
    height: 70px;
    width: 20%;
    border-radius: 50px;
    background-color:   lightcoral;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.details .text{
    font-size: 18px;
    font-family: futura;
    color: aliceblue;
    text-transform: uppercase;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}
#nav{
    /* height: 100px; */
    width: 100%;
    /* background-color: burlywood; */
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
}
#links{
    padding: 10px;
}
#nav #nav-part2{
    font-family: "Helvetica Now Text", "Lucida Sans", Tahoma, sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#nav-part2 #links a{
    text-decoration: none;
    color: #333;
    font-weight: 100;
    margin: 0px 20px;
    font-size: 14px;
}
#nav-part1{
    /* background-color: aqua; */
    height: 83px;
    overflow: hidden;
}
#nav-part1 svg{
    display: block;
}
#nav-part2 .icons i{
    font-size: 18px;
    margin: 0 20px;
    font-weight: 100;
}
.icons{
    padding: 10px;
    padding-right: 5px;
    border-radius: 50px;
    background-color: #F7F7F7;
}
#cursor{
    height: 250px;
    width: 250px;
    background-color: lightgrey;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%,-50%) scale(0);
}
.elem .details:hover{
    height: 200px;
}
#page3{
    min-height: 120vh;
    width: 100%;
    display: flex;
     align-items: center; 
     justify-content: space-evenly; 
     flex-wrap: wrap;
}
.child{
    height: 54vh;
    width: 38vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.child img{
    height: 100%;
    width: fit-content;
}
.product{
    font: inherit;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    padding-bottom: 15px;
    font-family: "Helvetica Now Text";
    font-weight: lighter;
}
.price{
    font-family: "ABC Social Mono";
    font-weight: 500;
}
#line{
    padding-top: 50px;
    margin-top: 150px;
}
#page4{
    height: 100vh;
    width: 100%;
    /* background-color: rgb(234, 171, 171); */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}
#msg{
    font-size:72px;
    font-family: "Futura";
    line-height:72px;
    vertical-align:baseline;
    letter-spacing:-2.16px;
    font-weight:500;
}
#btn{
    padding: 25px;
    border-radius: 50px;
    background-color: #000;
    color: #F7F7F7;
}
#page4 h5{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-align: center;
    font-weight: lighter;
}
#page5{
    min-height: 100vh;
    width: 100%;
    /* background-color: cornsilk; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#para{
    min-height: 30vh;
    width: 33%;
    padding-top: 80px;
    padding-left: 2vw;
}
#page5 h1{
    font-size: 30px;
}
#page5 p{
    font-size: 16px;
    font-family: "Helvetica Now Text", "Lucida Sans", Tahoma, sans-serif;
    line-height:24px;
    vertical-align:baseline;
    letter-spacing:0.16px;
    word-spacing:0px;
    font-weight: lighter;
}
#page5-part1{
    min-height: 30vh;
    width: 33%;
    padding-right: 4vw;
}
#page5-part1 img{
    height: 100vh;
}
#page5-part2{
    min-height: 30vh;
    width: 33%;
}
#page5-part2 img{
    height: 100vh;
}