/* Pagina 95% breed */
section {
    width: 95%;
    margin: auto;
    background: white;
    font-family: Arial, sans-serif;
}

/* Header met achtergrondfoto */
section > header {
    background-image: url("../header.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 5px;
}

section > header h1 {
    color: white;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Navigatie */
nav {
    background: #333;
    padding: 8px 15px;
}

nav a {
    color: lightgreen;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* Artikels */
article {
    padding: 20px;
    margin: 10px;
    border-bottom: 1px solid #ccc;
    background-color: lightgrey;
}

article h2 {
    margin-bottom: 10px;
    font-size: 28px;
    text-decoration: underline;
}

article p {
    line-height: 1.4;
    margin-bottom: 12px;
}

article footer a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

article footer a:hover {
    text-decoration: underline;
}

/* Footer onderaan */
section > footer {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #444;
}
