@font-face {
    font-family: "Lato";
    font-weight: 900;
    src: url("../fonts/Lato-Black.woff2") format("woff2");
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    overflow: hidden;

    background: repeating-linear-gradient(
        90deg,
        #acacac79,
        #ece7c881 5px,
        #acacac88 5px,
        #ece7c86c 10px
    );
}

img{
    border-style: none;
}

button{
    width: 40px;
    height: 40px;
    margin: auto;
    border: none;
    cursor: pointer;
}
h1, h2{
    font-family: "Lato";
}
/*END RESET*/
main{
    display: flex;
    flex-direction: column;
    text-align: center;
}

#wa_waiting{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border: 4px solid rgb(160, 197, 182);
    border-radius: 30px;
    margin: 16vh auto auto auto;
    width: min(450px, 80vw);
    padding: 15px;
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2) ;
}
#wa_waiting div{
    filter: drop-shadow( 5px 5px 10px rgba(110, 110, 110, 0.301));
}

#wa_waiting h2{
    margin-top: 8px;
    font-size: 1.2rem;
    color: rgb(110, 160, 140);
}



#vd_video{
    border: 5px solid rgb(110, 160, 140);
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    width: 120px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(110, 110, 110, 0.541);
}
#vd_video img{
    width: 100%;
}

@media screen and (max-height: 590px) {
    main div:nth-of-type(2){
        visibility: hidden;
    }
}