body {
    background-image: url(../images/molen-wanroij.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}
.waarWanroij {
    display: flex; /* dit maakt flexibele layouts mogelijk */
    align-items: flex-start;
    justify-content: space-between; /* dit zorgt voor een beetje lege ruimte tussen de flex elementen */
    gap: 20px;
    margin: 20px 0;
}
.historieWanroij {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}
.historieWanroijIMG img {
    width: 450px; /* dit bepaalt de breedte van de image */
    height: auto; /* dit zorgt ervoor dat de hoogte van de origele maat van de image mee veranderd met de breedte */
    border-radius: 0;
}
.historieWanroijText {
    max-width: 750px;
}
.historieWanroijIMG figcaption {
    text-align: center;
    font-size: 0.9em;
    color: black;
    margin-top: 5px;
}
.gemeenteWanroij {
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}
.vraagBox {
    background: white;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}
.button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}
.button:hover {
    background-color: #0056b3;
}