* {
    margin: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: url(../media/background.webp);
    background-position: center -100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #020201;
}

#Menu {
    height: auto;
    width: 100vw;
}



/* Menu Title */
.menu-title {
    padding-top: 10vh;
    top: 10vh;
    width: 100vw;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-title h1 {
    color: #b99844;
    font-weight: 800;
    font-size: 85px;
    font-family: 'Noto Sans', sans-serif;
}



/* Menu Wrapper */
.menu-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 14vh;
    width: 100vw;
    background-color: #1b1b1bf5;
}



/* Menu Selector */
.menu-selector {
    margin: 25px 0px 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 10vh;
}

.menu-selector button {
    transition: 0.25s;
    cursor: pointer;
    width: 225px;
    height: 55px;
    background-color: transparent;
    border: 1.5px solid #b4b4b4b1;
    color: #b4b4b4;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
}

.menu-selector button:hover {
    background-color: #b4b4b41f;
    width: 245px;
}

#selected {
    color: rgb(210, 210, 210);
    background-color: #315141;
    border-color: #315141;
}



/* Menukaart */
.menu-list {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.menu-container {
    display: flex;
    flex-direction: column;
    width: 375px;
    height: 375px;
    background-color: #44444425;
}

.menu-container h1 {
    margin-left: 36px;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #bebebe;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
}

.menu-container h2 {
    font-style: italic;
    color: #a8a8a8;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
}

menu-food-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

menu-container-wrapper {
    width: 80%;
    justify-content: space-between;
    display: flex;
}


/* Phone display */
@media (max-width: 800px) {
    .menu-selector {
        display: grid;
        grid-template-columns: auto auto;
        margin-bottom: 45px;
    }
    
    .menu-selector button {
        width: 180px;
    }

    .menu-selector button:hover {
        background-color: #b4b4b41f;
        width: 200px;
    }
}

@media (max-width: 600px) {
    .menu-selector {
        display: grid;
        grid-template-columns: auto auto;
        margin-bottom: 45px;
    }

    .menu-selector button {
        width: 165px;
        font-size: 14px;
    }

    .menu-selector button:hover {
        background-color: #b4b4b41f;
        width: 150px;
    }
}