* {
    color: white;
}

body {
    background-image: url(../images/achtergrond.jpg);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.intro-container {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 50px auto;
    align-items: flex-start;
}

.intro {
    margin-right: 50px;
}

img {
    width: 200px;
    height: auto;
}

* {
    font-family: Arial, Helvetica, sans-serif;
}

/* Responsive styles */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro {
        margin-right: 0;
        margin-bottom: 20px;
    }

    img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .intro-container {
        padding: 10px;
    }

    img {
        width: 120px;
    }
}

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;
    }
}

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