@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.header{
    width: 100%;
    max-height: fit-content;
    padding: 1rem;
}
.header-title{
    
    font-family: "Poppins", sans-serif;
    font-size: 40px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
  color: #351b0a;
}
.menu{
    width: 90%;
    margin: auto;
    background-color: rgb(179, 104, 54);
}
.menu-list{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.menu-list li{
    list-style-type: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}
.css-button-sliding-to-bottom--black {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
    overflow: hidden;
    border: 2px solid #ccad84;
    color: #cf924d;
  }
  .css-button-sliding-to-bottom--black:hover {
    color: #fff;
  }
  .css-button-sliding-to-bottom--black:hover:after {
    height: 100%;
  }
  .css-button-sliding-to-bottom--black:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background: #ad917e;
  }
  @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: 1rem;
    };
  }