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;
}
h1 {
    text-align: center;
}

h2, p, .container, header, 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;
    height: 200vh;
}

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;
}


footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}