main section:first-of-type{
    background-image: url(../images/techniek/miranda.png);
}

section:nth-of-type(2){
    display: grid;
    gap: 3em;
    place-self: center;
    & p{
        grid-column: 1 / span 2;
    }
    & div{
        display: flex;
        width: 100%;
        gap: 1em;
        grid-column: 1 / span 2;
        & img{
            aspect-ratio: 1;
            object-fit: cover;
            width: 23%;
        }
        & img:nth-of-type(2){
            object-position: top;
        }
    }
    & >img{
        grid-column: 2;
        grid-row: 5/ span 2;
    }
    & p:nth-last-of-type(2){
        grid-column: 1 / span 1;
        align-self: end;
    }
    & p:last-of-type{
        grid-column: 1 / span 1;
    }
}

section:nth-of-type(3){
    display: grid;
    gap: 3em;
    & > div{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3em;
        & > div img{
            height: 25rem;
            object-fit: contain;
        }
    }
    & a {
        display: grid;
        align-items: end;
        & div{
            display: grid;
            place-items: center;
            & img{
                height: 25rem;
                grid-row: 1;
                grid-column: 1;
                object-fit: cover;
            }
            & img:nth-of-type(1){
                height: auto;
                width: 20%;
                aspect-ratio: 1;
                z-index: 1;
            }
        }
    }
    
}