* {
    margin: 0;
    box-sizing: border-box;

}

body {
    background-color: #FFBD81;
    height: 100vh;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#top {
    width: 100vw;
    height: 120px;
    display: flex;
    align-items: center;
    background-color: #FD9536;
}

#textCardapio {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin-left: 31%;
    font-size: 2REM;
}

#menuBarras {
    width: 70px;
    height: 100px;
    margin-left: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#menuBarras:hover {
    cursor: pointer;
}

#drop-list:hover>#dropdown {
    opacity: 1;
    z-index: 10;
    top: 32px;
}


#drop-click {
    position: relative;
    width: 70px;
    height: 100px;
    margin-left: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#dropdown-click {
    position: absolute;
    width: 9vw;
    list-style: none;
    padding: 0;
    opacity: 0;
    color: white;
    top: 50px;
    display: flex;
    flex-direction: column;
    height: 86vh;
    margin-top: 3px;
    justify-content: space-evenly;
    z-index: -10;
    transition: 0.5s;
    border-radius: 10px;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 1.3rem;
    background-color: rgba(0, 0, 0, 50%);
    backdrop-filter: blur(4px);
    box-shadow: 1px 3px 50px 13px black;
}

a{
    text-decoration: none;
    color: white;
}

li{
    width: 100%;
    height: 4vh;
    text-align: center;
}

#check {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
}

#check:checked~#dropdown-click {
    opacity: 1;
    z-index: 10;
    top: 80px;
}

#voltar {
    position: absolute;
    width: 3.50%;
    height: 5%;
    border: solid;
    opacity: 0%;
}

#botaoVoltar:hover {
    cursor: pointer;
}

#botaoVoltar {
    width: 100%;
    height: 100%;

}

#barra1,
#barra2,
#barra3 {
    width: 100%;
    height: 3px;
    background-color: black;
}

#logoWpp{
    position: absolute;
    height: 10vh;
    width: 5vw;
    top: 85%;
    left: 90%;
}

#wppLogo:hover{cursor: pointer;}