body{
    margin:0;
    padding:0;
    width:100%;
    display:flex;
    flex-direction:column;
}
header{
    text-align:center;
    position:relative;
}
#logo img{
    align-items: center;
}
.kleur1{
    font-size: 50px;
    margin: 0 40px 25px 40px;
    color: #5e513b;
}
#woord-container{
    color: #296529;
    font-size: 30px;
    margin-bottom: 25px;
}
#nav-container{
    justify-content: center;
    align-items: center;
    position: relative;
}
#links {
    padding: 10px;
    list-style: none;
    background-color: #296529;
    text-align: center;
    justify-content: center;

}
#links a{
    color: white ;
    text-decoration: none;
    font-size: 30px;
}
#links a:hover{
    background-color: #57A639;
    border-radius: 10px;
    padding:5px;
}
#links li{
    padding: 5px 0 5px 0;
}
.slider-background2 {
    position: relative; /* Zorgt ervoor dat de slideshow zich over het hele scherm uitstrekt */
    text-align:  center;
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    width: 100%;
    height: 750px;/* De slideshow vult de volledige schermhoogte */
    z-index: -1; /* Zorgt ervoor dat de slider achter de content blijft */
    object-fit: cover;
}
.slider-background {
    display: flex;
    position: absolute; /* Zorgt ervoor dat de slideshow zich over het hele scherm uitstrekt */
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* De slideshow vult de volledige schermhoogte */
    z-index: -1; /* Zorgt ervoor dat de slider achter de content blijft */
}

/* Afbeeldingen in de slideshow */
.slides img {
    display: flex;
    align-items: center;
    margin-left:0;
    margin-right:0;
    position: absolute;
    width: 100%; /* Laat de afbeelding de volledige breedte van de container innemen */
    height: 100%; /* Laat de afbeelding de volledige hoogte van de container innemen */
    object-fit: cover; /* Zorg ervoor dat de afbeelding het volledige gebied bedekt zonder vervorming */
    opacity: 0; /* Standaard onzichtbaar */
    animation: fade 4s infinite; /* Zorgt voor een fade-animatie en een oneindige lus */
}

/* Zorg ervoor dat de afbeeldingen na elkaar getoond worden */
.slides img:nth-child(1) {
    animation-delay: 0s;
}
.slides img:nth-child(2) {
    animation-delay: 20s;
}
.slides img:nth-child(3) {
animation-delay: 40s;
}.slides img:nth-child(4) {
animation-delay: 60s;
}.slides img:nth-child(5) {
animation-delay: 80s;
}.slides img:nth-child(6) {
animation-delay: 100s;
}

/* Fade animatie voor de afbeeldingen */

@keyframes fade {
    0%, 100% { opacity: 0; }
    20%, 33.33% { opacity: 1; }
}
.uitlijning{
    text-align: center;
    margin: 150px 50px 170px 50px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
}
.uitlijning p{
    font-size: 15px;
    padding-bottom: 0;
}
#AG1{
    height: 250px;
    margin: 0;
}
footer{
    margin-top: 25px;
    text-align: center;
    width: 100%;
    background-color: rgba(10, 135, 10, 0.385);
}
footer ul{
    list-style-type: none;
}
/* Hamburger menu container */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 30px;
}

/* Hamburger lines */
.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
}

/* Dropdown menu */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Hidden by default */
    width: 250px;
    height: 100%;
    background-color: #f1f1f1;
    padding: 50px 20px;
    transition: 0.4s;
    z-index: 999;
}

/* Hover effect */
.hamburger-menu:hover .dropdown-menu {
    left: 0;
}

/* Menu items */
.dropdown-menu a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.dropdown-menu a:hover {
    background-color: #ddd;
}
#Contact{
    text-align: center;
}
@media screen and (min-width: 768px) {
    #Contact{
        margin:0 auto;
        padding: 0;
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    footer {
        margin: 0;
        padding-top: 20px;
        position: relative;
    }
}
@media screen and (min-width: 992px) {
    header{
        padding-top: 50px;
    }
    .media img{
        position: absolute;
        left:50px;
        float:left;
    }
    .slider-background{
        height: 80%;
    }
    .uitlijning{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .uitlijning p{
        font-size: 20px;
    }
    footer{
        margin-top: 20px;
    }
    .slider-background2{
        margin: 0 auto;
    }
    .slides img{
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
}