:root {
    --bg-color: #ffff99;
    --text-color: #003399;
    --link-color: red;
    --hover-color: #006633;
    --font-main: Arial, Helvetica, sans-serif;
}

BODY, TD {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 14px;
    text-align: left;
}

H2 {
    font-size: 16px; /* Iets groter voor betere leesbaarheid */
}

H3 {
    font-size: 15px;
    font-style: italic;
    font-family: sans-serif;
}

H4 {
    font-family: sans-serif;
    font-size: 13px; /* Consistente tekstgrootte */
}

A {
    color: var(--link-color);
}

A:hover {
    color: var(--hover-color);
    background: transparent;
}

HR {
    height: 1px;
}