/*
Auteur: Kai van Dorland
Aanmaakdatum: 29-9-2025
Website gemeente Wijchen
*/

@font-face {
    font-family: 'archivo';
    src: url(/fonts/Archivo_Black/ArchivoBlack-Regular.ttf);

}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: auto;
    gap: 25px;
    justify-content: center;
    margin-top: 0px;
    font-weight: bolder;
}

h3, h4 {
    font-weight: bolder;
    font-size: larger;
}

h2 {
    display: flex;
    justify-content: center;
}

p {
    display: flex;
   justify-content: center;
   font-weight: bold;
   font-size: medium;
}

.grid-container table, th, td { /*Heb hier meerdere table elements in 1x gestijlt door komma's te gebruiken*/
    border: solid;
    border-color: rgb(245, 221, 2);
    border-radius: 5%;
}
.grid-container caption {
    font-family: 'archivo', sans-serif;
}

.grid-container img, iframe { /*Iframe ronde randjes gegeven zodat het er mooier uit ziet i.p.v vierkant en standaard*/
    border-radius: 10%;
    
}

.grid-container table {
    justify-self: center;
}