html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit; /* Altijd in begin van uw CSS */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: none;
    min-height: 100vh;
}

/* Container to center content and set max width */
.container {
    max-width: 1440px; /* Lock the maximum width */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Small padding for responsiveness */
}

/* Stijl voor de gehele pagina header */
header {
    background-color: rgb(157, 213, 115); 
    color: white;
    text-align: center;
    padding: 50px 0;
}

header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

/* Algemene stijl voor secties */
section {
    padding: 60px 20px;
    text-align: center;
}
.achtergrond{
    background-color: rgb(157, 213, 115);
}
/* Stijl voor de witte sectie met de afbeeldingen */
#basis {
    background-color: white;
    min-height: 100vh;
}

#basis h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.midden {
    margin: 20px 0;
}

.midden h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #555;
}

.midden img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 22px;
}
.midden a {
    color: black;
}
/* Stijl voor footer met dezelfde kleur als de header */
footer {
    background-color: rgb(157, 213, 115);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
}

/* Responsieve weergave: zet de afbeeldingen naast elkaar op grotere schermen */
@media (min-width: 600px) {
    #basis {
        display: flex;
        justify-content: center;
    }
   

    .midden {
        flex-basis: calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 0 15px;
    }
}

/* Lock the width at 1440px on larger screens and make it responsive */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px; /* Ensure the content doesn't expand beyond 1440px */
        margin: 0 auto;
    }
}



