.header{
    background-color: #de9393;
    width: 100%;
    max-height: fit-content;
    padding: 2rem;
}

.header-title{
    color: #7e2e2e;
    text-align: center;
    font-family: "IM Fell DW Pica", serif;
    font-weight: 500;
    font-style: italic;
    font-size:40px;
}

.menu {
    width: 100%;
    margin: 1%;
    text-align: center;
    font-family: "IM Fell DW Pica", serif;
    font-weight: 600;
    font-style: normal;
    font-size:medium;

}
.menu-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.menu-list li {
    list-style-type:none;
    text-align: center;
    justify-content:center;
    align-items: center;
   

}

a{
    text-decoration: none;
}



.css-button-rounded--black {
    min-width: 130px;
    height: 40px;
    color: rgb(219, 117, 117);
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display:flex;
    outline: none;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
    background: #f3b9b9;
  }
  .css-button-rounded--black:hover {
    background: #eedede;
    color: rgb(219, 139, 139)
  }

  
@media only screen and (max-width: 768px) {
  .header{

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }  
  .menu-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .menu-list li{
    margin-top: 2rem;
  }
}