*{
    margin: 0;
    padding: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
:root{
    --first: #4643E7;
    --second: #C9EEFF;
}
.nav{
    height: 8vh;
    width: 100%;
}

body{
    height: 100%;
}

#loader{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: anim2 1s cubic-bezier(0.19, 1, 0.22, 1) 5s both;
}

#wrapperload{
    width: 500px;
    height: 100px;
    overflow: hidden;
    background-color: #fff;
}

#wrapperload .elem{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    display: flex;
    color: #4643E7;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* background-color: #efefef; */
}

#wrapperload .elem:nth-child(1){
    animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 1s both;
}

#wrapperload .elem:nth-child(2){
    animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 3s both;
}

#wrapperload .elem:nth-child(3){
    animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 5s both;
}

@keyframes anim{
    to{
        margin-top: -100px;
    }
}

@keyframes anim2{
    to{
        transform: translateY(-100%);
    }
}


.div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh;
    width: 25%;
    box-shadow: 2px 2px 14px #4643E7;
    border-radius: 8px;
}
.nav div h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5vw;
    color: var(--first);
    /* text-shadow: 2px 2px 4px rgb(132, 220, 240); */
}

.container0{
    /* border: 2px solid blue; */
    margin-top: 15px;
    display: flex;
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
}

.container0 .content{
    width: 60%;
    gap: 3px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 80%;
    /* border: 2px solid black; */
    margin: 5px;
}

.container0 .content h2{
    display: flex;
    justify-content: center;
    color: var(--first);
    font-family: 'Roboto', sans-serif;
}

.container0 .content p{
    display: flex;
    justify-content: center;
    font-weight: bolder;
    font-family: 'Roboto', sans-serif;
}

.container0 .content #pose{
    height: 80%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    /* border: 2px solid black; */
    gap: 10px;
}

#pose .mask{
    width: 40%;
    height: 90%;
    border: 2px solid rgb(228, 228, 228);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#pose .mask:hover{
    box-shadow: 2px 2px 14px #4643E7;
    transition: 0.5s;
}

strong{
    color: black;
    font-family: 'Roboto', sans-serif;
}

#pose .exp{
    width: 40%;
    height: 90%;
    border: 2px solid rgb(228, 228, 228);
    border-radius: 5px;
    box-shadow: 0px 0px 0px #4643E7;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#pose .exp:hover{
    box-shadow: 2px 2px 14px rgb(81, 81, 81);
    transition: 0.5s;
}
.container0 .image{
    width: 40%;
    height: 80%;
    /* border: 2px solid black; */
    margin: 5px;
}

#foot{
    height: 10vh;
    width: 100%;
    background-color:var(--first);
}


#foot p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    height: 30%;
}

#foot .icon{
    height: 70%;
    width: 100%;
    background-color: var(--first);
    display: flex;
    align-items: center;
    justify-content: center;
}

#foot .icon a{
    width: 3%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 70%;
}

@media only screen and (max-width: 768px){
    html{
        height: 100%;
        font-size: 45%;
    }

    .container0{
        height: 80%;
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
    }
    .nav{
        width: 100%;
    }
    .div{
        width: 50%;
    }
    .nav .div h1{
        font-size: 3vw;
    }
    .icon {
        gap: 15px;
    }
    #pose .mask{
        width: 50%;
    }
    #pose .exp{
        width: 50%;
    }
}