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

/* font-family: 'Noto Sans HK', sans-serif;
font-family: 'Quicksand', sans-serif; */

body{
  background-image: url(imagens/back_black_copy.jpg);
}


.parent {
  display: flex;
  align-items: center;
  justify-content: center;
}
    
    

.div2{
  background-image: url(cardápio/Captura\ de\ tela\ 2023-10-05\ 232429.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 40rem;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 12rem;

}

.menu{
  margin-top: 30rem;
}

.menu{
  font-size: 7rem;
  font-weight: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D89664;
  font-family: 'Pavanam', sans-serif;
}

.text-logo1{
  text-shadow: 1px 1px 2px #000000;
  display: flex;
  font-size: 2.5rem;
  font-family: 'Pavanam', sans-serif;
  font-weight: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 4.3rem;
  color: #ffffff;
}

.text-logo2{
  text-shadow: 1px 1px 2px #000000;
  font-size: 2.5rem;
  font-family: 'Pavanam', sans-serif;
  font-weight: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 0.7rem;
  color: #D89664;
}

.logo{
  margin-bottom: 2rem;
  margin-right: 9rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  
}

.btnArea{
  margin-bottom: 2rem;
  /* margin-top: 5rem; */
  margin-left: 2rem;
  background-color: transparent;
  width: 20rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
}

.btn {
  text-shadow: 1px 1px 2px #000000;
  color: #D89664;
  padding: 10px;
  background-color: transparent;
  border: transparent;
  font-size: 1.2rem;
  font-family: 'Pavanam', sans-serif;
  font-weight: 100;
  cursor: pointer;
  transition: 0.8s;
  position: relative;
}

.btn::after{
  content: " ";
  width: 0%;
  height: 0.8px;
  background-color: #D89664;
  border-bottom: 1px solid #D89664;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
 }

 .btn:hover::after{
  width: 100%;
  color: #ffffff;
 }

.photo{
  /* border-radius: 10%; */
  border-left: 7px #D89664 outset;
  width: 100%;
  height: 100%;
}

.box-cardapio-main{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 6rem;
}

.box-cardapio-top, .box-cardapio-mid, .box-cardapio-botton{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  /* gap: ; */
}

.img-food{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 155px;
  height: 130px;
  padding: 9px;
  margin: 5px;
  border: 1px #D89664 solid;
    gap: 9rem;
}

.name-food{
  text-align: center;
  color: #D89664;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'Pavanam', sans-serif;
  padding: 2rem;
}

.btn-img-food{
  background-color: transparent;
  cursor: pointer;
  border: transparent;
  text-decoration: none;
  transition: 0.8s;
  position: relative;

}

.btn-img-food:hover{
  transition: 0.5s;
  transform: scale(1);
  box-shadow: 0 15px 15px #000000;
  -xpedu-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

