* {
    margin: 0;
    padding: 0;
}
header {
    background-image: url('images/opvang.jpg'); 
    background-size: cover;
    padding: 20px 0;
}

.container {
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 86px;
    margin-right: 20px; 
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #00FF00;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #00FF00;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #00FF00;
    color: #000;
}
.footer {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.footer .left, .footer .right {
    width: 45%;
}
.Info {
    color: white;
}
.Info p {
    margin-bottom: 20px; /* Voegt een lege regel toe na elke paragraaf */
}

.Info h1, h2 {
    margin-bottom: 20px; /* Voegt ook ruimte toe na titels */
}