body {
    margin: 0px;
    padding: 0px;
    background-color: #9E897A;
}

.landingSection {
    background-image: url(/images/Marlies2.webp);
    background-size: cover;
    background-position-y: -175px;
    height: 60dvh;
}

.header1 {
    font-family: "Urbanist";
    color: white;
    font-size: 50px;
    margin-top: 25px;
    padding: 0px;
    font-weight: 300;
    text-align: center;
}

.textSection {
    display: flex;
    justify-content: center;

}

.textHolder {
    width: 50%;
    text-align: center;
}

.CardHolder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 100%;

}

.Card {
    width: 100%;
    height: 400px;
    background-color: #9E897A;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition: 0.5s ease;

}

.Card:hover {
    transform: scale(1.05);
}

.MiddleHeart {
    width: 100%;
}

.CardHeader {
    font-family: "Urbanist";
    color: white;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

.CardText {
    color: white;
    font-family: "urbanist";
    text-align: center;
    font-size: 17px;
    padding: 20px;
    padding-top: 0px;
}

#cardtextsmall {
    color: white;
    font-family: "urbanist";
    text-align: center;
    font-size: 16px;
    padding: 20px;
    padding-top: 0px;
}

.contactButton {
    height: 90px;
    width: 420px;
    max-width: 80%;
    border-radius: 50px;
    border: solid white 5px;
    font-family: "urbanist";
    font-size: 32px;
    letter-spacing: 8px;
    color: white;
    background-color: #9E897A;
    transition: 0.5s ease;
}

.contactButton:hover {
    background-color: white;
    color: #9E897A;
}

.fotoKinderenHolder {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.fotoKinderen {
    width: 70%;
    border-radius: 15px;
}

@media only screen and (max-width: 1600px) {

    .landingSection {

        background-size: cover;
        height: 60vh;
        background-position-y: -100px;

    }

}

@media only screen and (max-width: 1500px) {

    .Card {
        width: 100%;
        height: 400px;
    }

    .CardHeader {
        font-size: 30px;
    }

    .CardText {
        font-size: 16px;
    }

    #cardtextsmall {
        font-size: 16px;
    }
}



@media only screen and (max-width: 1300px) {

    .textHolder {
        width: 90%;
    }

    .Card {
        width: 100%;
        height: 400px;
    }

    .CardText {
        font-size: 16px;
    }

}

@media only screen and (max-width: 1000px) {

    .landingSection {

        background-size: cover;
        height: 60vh;
        background-position-y: 0px;
        background-position-x: 60%;

    }
}

@media only screen and (max-width: 700px) {

    .CardHolder {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        width: 100%;

    }

    .Card {
        width: 100%;
        height: 400px;
    }

    .CardText {
        font-size: 20px;
    }

    #cardtextsmall {
        font-size: 20px;
    }

}

@media only screen and (max-width: 500px) {

    .CardText {
        font-size: 16px;
    }

    #cardtextsmall {
        font-size: 15px;
    }


}