.elements {
    margin: 2em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.elements .element {
    width: 50%;
    /* background: var(--accents); */
}
.elements .element div {
    padding:  10px 15px;
    /* border-bottom:  1px solid rgba(0,0,0,.1); */
}
.elements .element div a {
    display: block;
}
.elements .element .image {
    padding:  0;
}
.elements .element .image img {
    display: block;
    width: 100%;
    border-radius: 7px;
}
.elements .element .media {
    padding:  0;
    width: 100%;
}
.elements .element .media a {
    margin-bottom: 0;
}

.tekst,
a{
    color: white;
}

.tekst{
    position: absolute;
    display: flex;
    align-items: start;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 200px;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    height: 100%;
}

.tekst .uitleg{
    width: 400px;
    position: relative;
    top: 400px;
    background-color: var(--accents2);
    border-radius: 7px;
}
@media screen and (max-width: 1100px) {

    .elements {
        flex-direction: column;
    }
    .elements .element {
        width: 100%;
    }

}