* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

*::selection {
    background-color: black;
    color: white;
}

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

body {
    background-color: #d6cccc;
}

#nav{
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 15px 40px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#logo{
    height: 82px;
    overflow: hidden;
}
#logo svg{
    display: block;
}
#nav-part2{
    width: 50%;
display: flex;
justify-content: space-between;
align-items: center;
}
#links a{
    text-decoration: none;
    font-family: Helvetica;
    text-transform: uppercase;
    font-size: small;
    color: black;
}
#links{
    display: flex;
    gap: 4vw;
}
#icons{
    font-size: 1.5vw;
    display: flex;
    gap: 6vw;
    background-color: white;
    padding: 0.6vw 2vw;
    border-radius: 50px;
}
.cursor {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: white;
    position: fixed;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 20vh;
    padding-left: 1vw;
    padding-right: 1vw;
}

#page1 h1 {
    font-size: 15.5vw;
    text-transform: uppercase;
    font-family: futura;
    line-height: 14vw;
    letter-spacing: -5px;
}

#video-container {
    height: 100vh;
    width: 100%;
    margin-top: 1vw;
    background-color: black;
    position: relative;
}

#video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#video-container #play {
    padding: 3vw 2vw;
    color: white;
    background-color: black;
    border-radius: 50%;
    position: fixed;
    font-size: 1.3vw;
    text-transform: uppercase;
    font-family: futura;
    opacity: 0;
    scale: 0;
    transform: translate(-50%, -50%);
}

#page2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 3vw 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#page2 .elem {
    height: 100%;
    width: 31%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page2 .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

#elem1 .dets {
    background-color: #FFF6DE;
}

#elem2 .dets {
    background-color: #8AAAD6;
}

#elem3 .dets {
    background-color: #FFFFFF;
}

.elem .dets {
    height: 50px;
    width: 80%;
    border-radius: 50px;
    position: absolute;
    z-index: 10;
}

#page3 {
    min-height: 100vh;
    width: 100%;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.child {
    height: 70vh;
    width: 40vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child img {
    height: 100%;
    width: 100%;
}

@media (max-width: 600px) {
    
#nav{
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 10px 30px 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#logo{
    height: 82px;
    overflow: hidden;
}
#logo svg{
    display: block;
}
#nav-part2{
    width: 50%;
display: flex;
justify-content: space-between;
align-items: center;
}
#links{
    display: none;
}
#icons{
    font-size: 3vw;
    display: flex;
    gap: 6vw;
    background-color: white;
    padding: 0.6vw 2vw;
    border-radius: 50px;
    margin-left: 30vw;
}

    #page1 h1 {
        font-size: 16vw;
        line-height: 14vw;
        letter-spacing: -5px;
    }

    #page1 {
        min-height: 60vh;
        padding-top: 20vh;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    #video-container {
        height: 50vh;
        width: 100%;
        margin-top: 3vw;
    }

    #video-container #play {
        padding: 5vw 3vw;
        position: absolute;
        font-size: 3vw;
        opacity: 1;
        scale: 1;
        top: 50%;
        left: 50%;
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        padding: 5vw 3vw;
        position: relative;
        flex-direction: column;
    }

    #page2 .elem {
        height: 100vh;
        width: 100%;
        margin-bottom: 3vw;
    }

    #page3 {
        min-height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        padding: 2vw;
    }
    .child {
        height: 40vh;
        width: 100vw;
    }
}