*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background: #fff;
    margin: 0;
    color: #262626;
    font-size: 1rem;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

/* ---------  small screens -------------- */

/* header */

.header-bronnen {
    background-image: url(../img/header-beelden-1150-2.jpg);
    background-size: cover;
    background-color: #ae0000;
    background-position: center bottom;
    height: calc(100px + 30vw);
    max-height: 500px;
}

.section_header {
    display: grid;
    padding-top: 0;
    grid-template-columns: max-content;
    justify-content: center;
}

@media (min-width: 763px) {
    .section_header {
        grid-template-columns:
        1fr
        30vw
        60vw 
        1fr
    }
}

.title-bg {
    padding: 0 4em 2em;
    background-color: #b00000;
}

@media (min-width: 763px) {
    .title-bg {
        grid-column: 3/4;
        justify-self: start;
        display: inline-block;
        padding: 0 50px 50px;
    }
}

.nav-container {
    text-align: center;
}

/* ===================
Typography
====================*/

/* header & nav typography */

.site-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.title-nav-link {
    text-decoration: none;
    color: inherit;
}

@media (min-width: 768px) {
    .site-title {
        margin-top: 45px;
        font-size: 36px;
    }
}

.nav-link {
    text-decoration: none;
    color: #fff;
    margin-left: 1.5em;
    margin-right: 1.5em;
    padding: .3em 0 .1em;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
}

.nav-link_current-page {
    border-bottom: 1px solid #fff;
}

.nav-link:hover,
.nav-link:focus {
    border-bottom: 1px solid #fff;
}

/* ===================
Image Gallery
====================*/

.my-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 10px;
    padding: 10px;
    padding-top: 10px;
    margin: 0 auto;
  }
  .my-gallery img {
    width: 100%;
    display: block;
  }
  .my-gallery figure {
    margin: 0;
  }
  .my-gallery figcaption {
    display: none;
  }







