/* Algemene styling */
body {
    font-family: Arial, sans-serif;
    background-image: url(../images/achtergrond.jpg);
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:link, a:visited {
    background-color: #5c314f;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}

header {
    display: flex;
    justify-content: center;
    z-index: 1;
}

.nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* Burger menu styling */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    width: 30px;
}

.bar {
    height: 5px;
    width: 25px;
    background-color: white;
    border-radius: 5px;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #5c314f;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #5c314f;
    }

    #nav-links.active {
        display: flex;
    }

    .navbar a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar a {
        padding: 8px;
        font-size: 14px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    text-align: center;
   
}

.container {
    max-width: 800px;
    margin: 0 auto; /* Center de container horizontaal */
    padding: 20px;
    display: flex;
    justify-content: center; /* Center de items horizontaal */
    align-items: center; /* Center de items verticaal */
    text-align: left;
    gap: 20px; /* Ruimte tussen tekst en afbeelding */
    transform: translateX(-20px); /* Verschuif de container iets naar links */
}

header {
    display: flex;
    justify-content: space-between;
    font-style: italic;
    font-size: 14px;
    padding: 10px 20px;
}

h1 {
    font-size: 50px;
    font-weight: normal;
    line-height: 1.2;
}

.image-container {
    max-width: 300px; /* Beperk de breedte van de afbeelding */
    margin: 0; /* Verwijder ongewenste marges */
}

.image-container img {
    width: 100%; /* Zorg dat de afbeelding de container vult */
    height: auto;
    border-radius: 5px;
}

/* New class for blue text */
.blue-text {
    color: blue;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Onder elkaar bij kleinere schermen */
        align-items: center; /* Ensure containers stay centered */
        text-align: center; /* Center text inside the containers */
    }

    .image-container img {
        width: 90%; /* Schaal de afbeelding bij kleinere schermen */
        height: auto;
    }
}
