/* stijl.css */

/* Algemeen */
body {
    background-color: #e6f7ff; /* Heel lichtblauw met hoog contrast */
    color: #cc6600; /* Donkeroranje tekst voor goed contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Koppen */
h1, h2, h3, h4, h5, h6 {
    color: #b30000; /* Diep rood, goed zichtbaar */
}

/* Links */
a {
    color: #e6c300; /* Donkergeel voor goed contrast */
    text-decoration: underline;
}

a:hover {
    color: #ffaa00; /* Oranje-geel bij hover */
}

/* Toegankelijkheid: Zorg voor voldoende contrast en leesbaarheid */
@media (prefers-contrast: more) {
    body {
        background-color: #ffffff;
    }

    a, h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
    }
}
