/* Algemene stijlen */
/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 1fr;
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #333;
}

/* Logo */
figure {
    display: grid;
    place-items: center;
    padding: 10px;
    background-color: white;
}

/* Navigatie */
nav {
    background-color: #004466;
    color: white;
    padding: 15px;
    font-size: large;
}

nav ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    text-align: center;
}

nav a:hover {
    background-color: #006699;
    border-radius: 5px;
}

nav a.active {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
}

/* Header */
header {
    display: grid;
    place-items: center;
    background-color: #0077b6;
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* Main layout */
main {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 20px;
}

section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

section img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Footer */
footer {
    display: grid;
    place-items: center;
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}