body {
    font-family: "Playwrite DE Grund";
    font-weight: 400;
    margin: 2vw;
    background-color: #FFC4C9;
}
.hero{
    text-align: center;
    background: url('bg.jpg') no-repeat;
    background-size: cover;
    padding: 5vw;
    margin: 1.5vw 0.7vw 1.5vw 0.7vw;
    letter-spacing: 1rem
}
p, li {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.2em;
}
h1 {
    font-family: "Matemasie", sans-serif;
    font-size: 4em;
    text-align: center;
    color: #000000;
}
.app {
    display: flex;
    justify-content: space-between;
}
.card{
    flex: 1;
    margin: 2vw;
}
.row.card:last-of-type{
    margin-right: 0;
}
.card-image img{
    width: 100%;
    display: block;
}
.card-text{
    background-color: #FFA5BA;
    padding:2vw;
    height: 18vh;
    text-align: center;
}
.card-text h2{
    margin-top: 0;
}

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

    .card-text{
        height: 23vh;
    }

}
@media screen and (max-width: 1350px){

    .card-text{
        height: 30vh;
    }

}
@media screen and (max-width: 1160px){
    .app {
         flex-direction: column;
    }
    .hero{
        padding: 2vh;
        text-align: center;
        background: url('bg2.jpg') no-repeat;
        background-size: cover;
    }
    .card-text{
        height: 15vh;
    }
}

