h1{
    color:#990953;
    margin-bottom: 10px;
}
section{
    margin-bottom:10%;
}
.banner{
    margin-top: 60px;
}
.flex-stappen{
    display: flex;
    flex-wrap: wrap;
}
.flex-stappen .row{
    display: flex;
    align-items: center;
    width: 100%;
    height: 40%;
    gap: 50px;
}
.flex-stappen .row img{
    width: 25%;
}
.flex-stappen .row:nth-child(3) img{
    padding: 20px;
}
.flex-stappen .row .text{
    width: 100%;
}
.flex-stappen .row .text h2{
    margin-bottom: 10px;
}

.puzzelstuk .row{
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ededed;
    padding: 30px;
}
.puzzelstuk .row img{
    width: 30%;
}
.puzzelstuk .row .text{
    justify-self: center;
    width: 70%;
}
.puzzelstuk .row .text h2{
    margin-bottom: 10px;
}
.video{
    margin-bottom: 60px;
}
.video video{
    width: 100%;
}
.video h2{
    margin-bottom: 20px;
}

@media only screen and (max-width:900px){
    .flex-stappen .row{
        margin:3% 0%;
        gap: 30px;
    }
    .flex-stappen .row img{
        order:1;
    }
    .flex-stappen .row .text{
        order:2;
    }
    .video{
        margin:3% 1%;
    }
    .puzzelstuk .row{
        flex-direction: column;
    }
    .puzzelstuk .row img{
        width: 70%;
    }
    .puzzelstuk .row .text {
        width: 100%;
    }
}
@media only screen and (max-width:500px){
    .flex-stappen{
        gap: 50px;
        width: auto;
    }
    .flex-stappen .row{
        margin:3% 0%;
        flex-direction: column;
        gap: 20px;
    }
    .flex-stappen .row img{
        width: 50%;
    }
}