.header {
    width: 100;
    max-height: fit-content;
    padding: 1rem;
}

.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: "Josefin Sans", sans-serif;
    justify-content: space-around;
    font-weight: 750;
    text-align: center;
    font-size: 25px;
    color: #9e3c16;
}

.css-button-fully-rounded--sand {
    min-width: 130px;
    height: 40px;
    color: #e25d28;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 20px;
    border: 2px solid #adb5bd;
    background: #adb5bd;
}

.css-button-fully-rounded--sand:hover {
    background: #b65800;
    color: #fff6e7
}

.css-button-fully-rounded--sand:active {
    top: 2px;

}



h1 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    color: #c26e68;
    font-size: 60px;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 7vmax;


}

@media only screen and (max-width: 768px) {

    h1 {

        font-size: 60px;
    }

    .header {
        height: fit-content;
        display: flex;
        flex-direction: column;

    }

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

    }

    .menu-list li {

        margin-top: 20px;
    }
    .css-button-fully-rounded--sand{ 
        height: auto;
        flex-direction: column;
    }
    

}