.header{
    width: 100%;
    max-height: fit-content;
    padding: 1rem;
    background-color: rgb(179, 201, 243);
}

.header-title{
    padding-bottom: 1rem;
    text-align: center;
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 300px;
    font-size: 50px;
    font-style: normal;
    color: #010a30
}

.menu {
    width: 90%;
    margin: auto;
}

.menu-list{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.menu-list li{
    list-style-type: none;
    font-family: "Rock Salt", cursive;
    font-weight: 10px;
    font-size: 13px;
    font-style: normal;
    text-align: center;
    color: rgb(179, 201, 243);
}

.css-button-rounded--rose {
    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;
    border: 2px solid #010a30;
    background:#010a30
  }
  .css-button-rounded--rose:hover {
    background: #010a30;
    color: #010a30
  }

  @media only screen and (max-width: 768px) {
   
    .header{
        height: fit-content;
        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: 3rem;
    }
    .css-button-rounded--rose:hover {
        background: #010a30;
        color: rgb(179, 201, 243);
      }
    }
    


