body {
    background-color: #1A2E4C;
    font-family: 'Arial', sans-serif;
    color: white;
}

nav {
    text-align: right;
}

#titel {
    font-size: 100px;
    text-align: center;
    color: white;
}


ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.div_menu {
    color: black;
}

a.menu {
    width: 30%;
    height: auto;
    font-size: 30px;
    /* Geef de items een breedte van ongeveer 30% van de container */
    background-color: white;
    /* Achtergrondkleur toevoegen aan de lijstitems */
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    
}

table.overzicht {
    font-size: 25px; 
    text-align: center;
    border: 2px solid white; 
    border-collapse: collapse;
    color: white;
}

table.overzicht th, table.overzicht td {
    border: 1px solid white; 
    border-collapse: collapse;
}