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

html{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Montserrat Slab", serif;
    line-height: 1.2;
    margin-bottom: 0;
    padding-bottom: 0;
    color:rgba(131,90,89,1.00);
    font-weight: 300;
    font-size: 2rem;
}
.kop_blog{
	font-size:3rem;
	line-height:1.2; 
	text-align:center;
	margin: 0 0rem 0rem 1rem;
}	

.datum{
    color:rgba(173,148,118,1.00);
    font-size:1rem;
    font-variant: small-caps;
}
.datum + h1, .datum + h2, .datum + h3, .datum + h4, .datum + h5, .datum + h6, .datum + h7 {
    margin-top: 0.5rem;/* Aanpassen naar gewenste waarde */
}
.container_wrapper{
    max-width: 1200px;
    margin: 0 auto;
}
main{
	display:flex;
	flex-direction: column;
	align-items: center;
}
.main_nav{
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    background-color:rgba(67,81,58,1.00);
    color: rgba(142,166,122,1.00) 

}
.main_nav li a{
    text-decoration: none;
    color: white;
    padding:0.8rem;
    display: block;
}
.main_nav li a:hover{
    color: rgba(142,166,122,1.00);
}
.image_row{
    display: flex;
    justify-content: center;
    gap:1rem;
}

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

img{
    max-width: 100%;
    height: auto;
}
a.scroll-top_link{
	text-decoration:underline;
	color:rgba(67,81,58,1.00);
}
a.scroll-top_link:hover{
	color:rgba(142,166,122,1.00);
}

/*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;
    }
    .separator{
    margin-left:0;
}


}