.header{
    width: 100%;
    padding: 1rem;
}
.header-title{
    padding-bottom: 1rem;
    text-align: center;
    font-family: 'Shadows Into Light';
    font-weight: 400;
    font-style: normal;
    font-size: 4vmax;
}
.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: 'Shadows Into Light';
    font-display: swap;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}

.css-button-retro--red {
    min-width: 130px;
    height: 40px;
    color: #aad4da;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border: 1px solid #000;
    color: #000;
    background: transparent;
    z-index: 0;
  }
  .css-button-retro--red:hover:after {
    top: 0;
    left: 0;
  }
  .css-button-retro--red:after {
    content: "";
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 5px;
    left: 5px;
    transition: 0.2s;
    background-color: #aad4da;
  }

  
  @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;
    };
    }