.header{ 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-height: fit-content;
  padding: 1rem;
}  

.header-title{
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 40px;
font-weight: 700;
font-style: normal;
text-align: center;
margin-bottom: 30px;
color: #ea72a8;
padding-bottom: 1rem;
}

.titulo{
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:unset;
}

.menu{
  width: 90%;
  margin: auto;
}

.menu-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.menu-list li{
  list-style-type: none;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}


.css-button-3d--rose {
  min-width: 150px;
  height: 30px;
  color: #fff;
  padding:5px 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 8px;
  border: none;
  background: #ff6392;
  overflow: hidden;
  box-shadow: 0 5px #ff0a78;
}

  .css-button-3d--rose:hover {
    box-shadow: 0 3px #ff0a78;
    top: 1px;
}

  .css-button-3d--rose:active {
    box-shadow: 0 0 #ff0a78;
    top: 5px;
}
  
@media only screen and (max-width: 768px){
  .header{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    }
    
  .menu-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    }

  .menu-list li{
    margin-top: 2rem;
  } 
}
