/* 
 This CSS file is used to override the existing styles of the theme.
 You can change the article headings, fonts, colors, etc.
*/
.logo, .brand img {
    width: auto;  !important /* Pas de breedte aan zoals nodig */
    height: 100px;  !important /* Houdt de verhoudingen correct */
    maxheight: 100px; !important
}

/* Voeg nieuwe kleuren toe of overschrijf bestaande klassen */
.text-red {
    color: #dc3545 !important; /* Rood, pas aan zoals gewenst */
}

.text-blue {
    color: #007bff !important; /* Blauw, pas aan zoals gewenst */
}

.text-green {
    color: #28a745 !important; /* Groen, pas aan zoals gewenst */
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit; /* Pas eventueel aan */
    font-weight: bold;
}

strong, b {
    font-weight: bold;
}

body {
    font-size: 20px;  /* Pas de grootte aan naar wens */
    line-height: 1.6; /* Optioneel: Voeg ook een standaard regelhoogte toe voor leesbaarheid */
}

p {
    font-size: 18px;
}

li {
    font-size: 18px;
}

a {
    color: #007bff; /* Blauwe kleur */
    text-decoration: underline; /* Onderstrepen om het als link te markeren */
}

a:hover {
    color: #0056b3; /* Donkerdere kleur bij hover */
}

