/*
Auteur: Kai van Dorland
Aanmaakdatum: 28-9-2025
Website gemeente Wijchen
*/

@font-face {
    font-family: 'archivo';
    src: url(/fonts/Archivo_Black/ArchivoBlack-Regular.ttf);}

.grid-container { /* Grid container gebruikt om inhoud in blokken te laten zien */
    display: grid;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: auto;
    gap: 150px;
    justify-content: center;
    margin-top: 80px;
    font-weight: bolder;
}

h2{
        display: flex;
        justify-content: center;
        font-family: 'archivo', sans-serif;

    }

#IctWijchen { /* P met een ID gebruikt zodat niet alle P's stijlen*/
        display: flex;
        justify-content: center;
        font-weight: bolder;
        font-size: larger;
        margin-top: 40px;
    }

    p {
        font-size: large;
        font-weight: bold;
    }

 h3, h4, h5 {
        font-size: large;
        font-weight: bolder;
    }

 h2 {
        margin-top: 30px;
    }
    
img {
        border-radius: 10%;
    }