/* **** FONTS **** */
@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');
@import url('https://fonts.googleapis.com/css?family=Bree+Serif&display=swap');

/* **** ALGEMEEN **** */
html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -o-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
}

body {
    padding: 0;
    line-height: 2;
    font-family: 'Karla', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    padding: 0 10%;

}

h1, h2{
    font-size: 130%;
    font-weight: 500
}

h1 {
    text-align: center;
    font-size: 360%;
    font-family: 'Bree Serif', serif;
}

h2 {
    font-weight: bolder;
    text-align: left;
}

p {
    padding: 10px 0;
}

a {
    color: black;
    text-decoration: none;
}

li > a {
    display: block;
}

img {
    width: 100%;
}

.black {
    background-color: black;
}

.white {
    background-color: white;
}