body {
    background-color: #2f2f2f;
}

/*Alles hieronder is voor de header*/
.parent2 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.div5 {
    grid-area: 1 / 1 / 8 / 4;
    text-align: center;
    background-color: #202020;
}

.div6 {
    grid-area: 1 / 4 / 8 / 7;
    text-align: center;
    background-color: #202020;
}

.div7 {
    grid-area: 1 / 7 / 8 / 10;
    text-align: center;
    background-color: #202020;
}

.mainPictures {
    height: 900px;
    width: auto;
}

img {
    border: 1px solid #202020;
}

img:hover {
    border: 1px solid white;
    opacity: 0.5;
}