* {
    margin: 0;
    box-sizing: border-box;
    max-height: 100vh;
}

body {
    background: linear-gradient(to top, hsla(29, 100%, 96%, 1) 0%, hsla(29, 98%, 60%, 1) 100%);
    height: 100vh;
    background-repeat: no-repeat;
}

#top {
    width: 100vw;
    height: 120px;
    display: flex;
    align-items: center;
}

#textPaginaInicial {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin-left: 26%;
    font-size: 48px;
}

#menuBarras {
    width: 70px;
    height: 100px;
    margin-left: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#barra1,
#barra2,
#barra3 {
    width: 100%;
    height: 3px;
    background-color: black;
}

#midPage {
    height: 84vh;
}

#linhaOpcoes {
    height: 35px;
    background-color: #D9D9D9;
    width: 98%;
    margin-left: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

#imagens1pag {
    height: 75vh;
    margin-top: 1%;
    display: grid;
    grid-template-columns: 30px 2fr 3fr 2fr 30px;
    grid-template-rows: 100%;
}

#fotosBlur {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#imgPrincipal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nomeRestaurante {
    height: 15vh;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    margin-top: 10px;
    color: #005E4D;
    text-shadow: 0px 5px 4px #FD9536;

}

#botaoCardapio {
    margin-top: 10px;
    width: 30%;
    height: 10%;
    border-radius: 20px;
    box-shadow: -5px 3px 3px 3px #FC7153;
    background-color: transparent;
    border: solid #FC7153;
}
#cardapioBotao:hover{cursor: pointer;}

#cardapioBotao {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: transparent;
    border: none;
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 30px;
    color: #005E4D;
}

#logoWpp{
    position: absolute;
    height: 10vh;
    width: 5vw;
    top: 85%;
    left: 90%;
}

#wppLogo:hover{cursor: pointer;}

#drop-list:hover>#dropdown {
    opacity: 1;
    z-index: 10;
    top: 32px;
}


#drop-click {
    position: relative;
    margin-left: 30%;
    width: 70px;
    height: 100px;
    margin-left: 36%;
    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;
}