/* Algemene stijl voor de pagina */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #333;
}

/* Artikelen centreren en padding toevoegen */
article {
    background: #ffffff;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Kopteksten stijlen */
header h1 {
    color: #0077cc;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
}

/* Links stijlen */
a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #005fa3;
}

/* Artikelen consistent scheiden */
article + article {
    margin-top: 40px;
}

/* Optioneel: toevoegen van wat flair voor hover-effect */
article:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Grote titel bovenaan de pagina */
.site-title {
    font-size: 3rem; /* Groter dan een standaard h1 */
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    color: #333;    
    letter-spacing: 2px;
    background: linear-gradient(90deg, #0077cc, #005fa3);
    color: #fff;
    padding: 10px 0;
    border-radius: 8px;
}
/* Footer-styling */
.site-footer {
    font-size: 0.9rem; /* Kleiner dan de normale tekst */
    text-align: center;
    background: linear-gradient(90deg, #0077cc, #005fa3);
    color: #fff;
    padding: 10px 0;
    border-radius: 8px 8px 0 0; /* Alleen bovenaan afgerond */
    margin-top: 40px; /* Zorg voor ruimte boven de footer */
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); /* Subtiele schaduw boven de footer */
}
/* Links in de footer */
.site-footer a {
    color: #ffffff; /* Maak links in de footer wit */
    text-decoration: underline; /* Eventueel onderstrepen voor zichtbaarheid */
}

.site-footer a:hover {
    color: #ddd; /* Lichtere kleur bij hover */
    text-decoration: none; /* Hover effect zonder onderstreping */
}
