@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
.header{
  max-height: fit-content;
  width: 100%;
  padding:1rem

}
.header-title{
  padding-bottom: 1rem;
  text-align: center;
  font-size: 80px;
  font-family: "Playfair Display", serif;
  color: #ffabe2;
}

.menu-list{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.menu-list li{
  list-style-type: none;
  font-family: "Playfair", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  
}
.css-button-button{
  min-width: 100px;
  height: 40px;
  color: #7d0319;
  padding: 10px 10px; 
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background-size: 120% auto;
  background-color:#ffbfe9;
  font-size: 30px;

}
.css-button-button:hover{
  background-position: right center;
  background-color: #ebc6de;
}
.css-button-button:active{
  top: 2px;
}


@media only screen and (max-width:768px) {/* estilos para pantalla pequeña */
  .header-title{
    font-size: 35px;
    color: #7d0319;
}
.header{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.menu-list{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.menu-list li{
  margin-top: 20px;
}
.css-button-button{
  font-size: 25px;
  background-color: #7d0319;
  color: antiquewhite;
}
#subir{
  font-size: 20px;
}
}
#subir{
  display: flex; 
  position: fixed; 
  bottom: 20px; 
  right:  30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color:#ffbfe9; 
  color: #7d0319;
  cursor: pointer;
  padding: 15px; 
  border-radius: 10px; 
  font-size: 20px;
  font-family: "Playfair", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

#volver:hover {
  background-color: #555;
}

