/* --------------------- Sectie 1 --------------------- */
.section.foto-tekst.margin .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.section.foto-tekst.margin .tekst{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section.foto-tekst.margin .tekst-content{
    margin-bottom: 0px;
}

.section.foto-tekst.margin .foto img{
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section.foto-tekst.margin .tekst-content a{
    color: black;
    text-decoration: none;
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

/* --------------------- Mediaquerries --------------------- */

/* Tablet */
@media screen and (max-width: 1423px) {
    .section.foto-tekst.margin .container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
}

.section.foto-tekst.margin .foto img{
    aspect-ratio: 16/13;
}

}