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



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

p {
    color: white;
}

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

.contact {
    text-align: center;
    padding-top: 39px;
}

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