h1 {
    text-align: center;
}

h2, p, .container, header, nav, footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    text-align: left;
    width: 100%;
}

h2 {
    font-size: 24px;
    color: gray;
    font-weight: bold;
    margin-top: 20px;
}

p {
    margin: 10px 0 20px 0;
    line-height: 1.6;
}

body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 0.9em;
    transition: color 0.3s;
}

nav a:hover {
    color: #555;
}

.lijn {
    height: 1px;
    background: #000;
    border: none;
    margin: 30px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100vw;
}

.project-item-center {
    grid-column: span 1;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.minimal-button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.minimal-button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}
body {
    margin: 0;
    padding: 0;
    height: 200vh; /* Maakt de pagina langer om scrollen te testen */
    background-color: #f4f4f4;
}

/* Algemene stijl voor labels */
.label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: black;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

/* Pijl aan de linkerkant */
.pijl-links {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 30px solid black;
    cursor: pointer;
}

.pijl-links .label {
    left: 40px; /* Plaatst de tekst rechts van de pijl */
}

.pijl-links:hover {
    border-right-color: red;
}

/* Pijl aan de rechterkant */
.pijl-rechts {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid black;
    cursor: pointer;
}

.pijl-rechts .label {
    right: 40px; /* Plaatst de tekst links van de pijl */
}

.pijl-rechts:hover {
    border-left-color: red;\

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.8;
        margin: 0;
        padding: 0;
        background-color: #e9ecef;
        color: #212529;
    }

    header {
        background-color: #343a40;
        color: #f8f9fa;
        padding: 20px 0;
        text-align: center;
        font-size: 2em;
        letter-spacing: 2px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 20px 0;
        margin: 0;
        background-color: #fff;
    }

    nav ul li {
        margin: 0 30px;
    }

    nav ul li a {
        text-decoration: none;
        font-weight: bold;
        color: #000;
        font-size: 1.2em;
        letter-spacing: 1px;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #007bff;
    }

    main {
        padding: 30px;
        max-width: 900px;
        margin: 30px auto;
        background-color: #f8f9fa;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    h3 {
        color: #343a40;
        border-bottom: 3px solid #ced4da;
        padding-bottom: 10px;
        margin-top: 30px;
    }

    p {
        margin-bottom: 20px;
        text-align: justify;
    }

    div a {
        display: block;
        margin-bottom: 10px;
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }

    div a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    em {
        font-style: italic;
        color: #6c757d;
    }