body {
    background-color: #e8620e;  /* Oranje achtergrondkleur */
    font-family: 'Dosis', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    color: white;  /* Witte tekst voor goed contrast met de oranje achtergrond */
}

h1 {
    font-size: 3em;
    margin-top: 50px;  /* Ruimte boven de header */
    margin-bottom: 25px;  /* Ruimte onder de header */
}

p {
    font-size: 1.2em;
    margin-top: 25px;  /* Voeg 25px ruimte boven de paragraaf toe */
    margin-bottom: 25px;  /* Voeg 25px ruimte onder de paragraaf toe */
}

a {
    text-decoration: none;
    color: white;  /* Witte kleur voor links */
    font-weight: bold;
}

.menu {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #333;  /* Donkere achtergrond voor menu */
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu li {
    margin: 0 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px;
    display: block;
}

.menu a:hover {
    background-color: #555;  /* Verander kleur bij hover */
}

@media (min-width: 769px) {
    .menu {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: #333;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    margin: 20px auto;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: white;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        text-align: center;
        background-color: #333;
    }
    .menu.active {
        display: block;
    }
    .hamburger {
        display: flex;
    }
}
