@charset "utf-8";
/* CSS Document */
  @import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab:wght@300&display=swap');

html{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}
h1, h2, h3, h4{
    font-family: 'Roboto Slab', serif;
    line-height: 1.2;
    margin-bottom: 0;
    padding-bottom: 0;
    color :rgba(99,95,95,1.00);
    font-weight: 300;
    font-size: 2rem;
}
.datum{
    color:rgba(157,156,156,1.00);
    font-size:1rem;
    font-variant: small-caps;
}
.datum + h1, .datum + h2, .datum + h3, .datum + h4 {
    margin-top: 0.5rem; /* Aanpassen naar gewenste waarde */
}
.container_wrapper{
    max-width: 1200px;
    margin: 0 auto;
}

.main_nav{
    display: flex;
    justify-content: left;
    gap: 1rem;
    list-style: none;
    background-color:rgba(4,71,15,1.00);
    color: rgba(255,255,255,1.00)     
}
.main_nav li a{
    text-decoration: none;
    color: white;
    padding:0.8rem;
    display: block;
}
.main_nav li a:hover{
    color: rgba(204,0,248,1.00);
}
.image_row{
    display: flex;
    justify-content: center;
    gap:1rem;
}

.separator{
    content: "";
    margin-left: -1rem;
    width: 50px;
    height: 5px;
    background-color: rgba(131,127,127,1.00);
}
section{
    max-width: 800px;
}

img{
    max-width: 100%;
    height: auto;
}
/*media query's*/
@media only screen and (max-width: 600px) {
    .container_wrapper {
        width: 100%;
        padding: 0 10px;
    }

    .main_nav {
        flex-direction: column;
        align-items: center;
        margin:0;
        padding:0px;
        gap:0.5rem;
    }

    .main_nav li {
        text-align: center;
        line-height: 1;
        width:100%;
    }
    .main_nav li a{
        padding:0.5rem;
    }

    .image_row {
        flex-direction: column;
        align-items: center;
    }

    .image_row img {
        max-width:100%;
        height: auto;
    }

    section {
        margin-left: 0;
        padding: 0 10px;
    }
    .separator{
    margin-left:0;
}
}
