/* custom font aanpassen */
@font-face 
{
    font-family: custom;
    src: url(../fonts/Saira-VariableFont_wdth\,wght.ttf);
}
/* padding en margin op 0 zetten */
body, ul, li
{
    padding: 0px;
    margin: 0px;
}
/* body, a, h1, h3 en p elementen stylen */
body
{
    font-family: custom;
    background-color: black;
    text-align: center;
}

a
{
    display: block;
    color: white;
}

h1, h3
{
    font-weight: 300;
    color: white;
}

p
{
    color: white;
}

/* fotos stylen */
img
{
    margin: 10px 30px 10px 30px;
    background-color: gray;
    border: solid rgb(115, 23, 23);
    cursor: pointer;
    width: 35%;
    height: auto;
    border-radius: 8px;
}

img:hover
{
    transform: scale(1.04);
}

/* informatie tekst stylen */
.infoormatie
{
    margin: 0 100px;
    gap: 0 50px;
    display: flex;
    color: white;
}
/* article stylen */
article
{
    margin-bottom: 50px;
    padding: 0 300px 0 300px;
    text-align: center;
}