/* stijl document */

@import url('https://fonts.googleapis.com/css2?family=Dongle&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {font-family: 'Nunito', sans-serif;}



/* stijl per sectie */
.kop {
    background-color: white;
    text-align: left;
    border-bottom: 1px solid rgb(161, 11, 11);
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 50px;
}

.kop a {
    color: rgba(161, 11, 11);
    text-decoration: none;
}

.kop a:hover {color:rgb(226, 224, 62);}

.kop h1 {
    margin: 0;
    font-size: 40px;
}

.midden {
    padding: auto;
    padding-left: 50px;
}

.voet {
    background-color: rgb(41, 119, 143);
    color: white;
    text-align: center;
    padding: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.knop a {
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    padding-left: 100px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    border: 2px solid black;
    border-radius: 3px;
}

.knop a:hover {
    color: white;
    background-color: rgb(41, 119, 143);
    border: 2px solid white;
}

/* grid layout */
.container {
    display: grid;
    grid-template-columns: auto;
    gap: 8px;
    align-items: start;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fotocontainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(30rem, 100%), 1fr));
    gap: 1rem;
    margin-bottom: 50px;
}

