* {
    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;
}

#Diensten {
    height: auto;
    width: 100vw;
}



/* Menu Title */
.diensten-title {
    padding-top: 10vh;
    top: 10vh;
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diensten-title h1 {
    color: #b99844;
    font-weight: 800;
    font-size: 85px;
    font-family: 'Noto Sans', sans-serif;
}



/* Menu Wrapper */
.diensten-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 100vw;
    background-color: #1b1b1bf5;
    position: relative;
}



/* Menu Selector */
.diensten-selector {
    margin: 35px 0px 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 10vh;
}

.diensten-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;
}

.diensten-selector button:hover {
    background-color: #b4b4b41f;
    width: 245px;
}

#selected {
    color: rgb(210, 210, 210);
    background-color: #315141;
    border-color: #315141;
}



/* Beschrijving */
beschrijving-wrapper {
    width: 75vw;
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-family: 'Noto Sans', sans-serif;
    gap: 15px;
    margin-bottom: 35px;
    margin-top: 35px;
}

beschrijving-wrapper .beschrijving {
    display: flex;
    align-items: center;
    background-color: #44444425;
    padding: 30px;
    margin-bottom: 50px;
}

beschrijving-wrapper .beschrijving p {
    font-size: 20px;
    color: #c9c9c9;
    font-weight: 300 !important;
}

beschrijving-wrapper .beschrijving a {
    color: #50876b;
    text-decoration-color: #50876b;
}



/* Etenswaren */
etenswaren {
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: #26372f;
    padding: 50px;
}

etenswaren-wrapper {
    width: 75vw;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

etenswaren-wrapper .container {
    font-family: 'Noto Sans', sans-serif;
    background-color: #1b1b1b23;
    padding: 25px;
}

etenswaren-wrapper .container h1 {
    padding-bottom: 5px;
    font-size: 20px;
    color: #bebebe;
}

etenswaren-wrapper .container h2 {
    color: #a8a8a8;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

container-wrapper {
    gap: 50px;
    display: flex;
}



/* Phone display */
@media (max-width: 800px) {
    .diensten-selector button {
        width: 180px;
    }

    .diensten-selector button:hover {
        background-color: #b4b4b41f;
        width: 200px;
    }

    beschrijving-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    etenswaren-wrapper .container {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .diensten-selector button {
        width: 140px;
        font-size: 12px;
    }

    .diensten-selector button:hover {
        background-color: #b4b4b41f;
        width: 150px;
    }

    .diensten-title h1 {
        font-size: 60px;
    }
}