body{
    margin-left: 60px;
    margin-top: 50px;
    background-color: FFEAF3;
}
header{
    margin-right: 30px;
    color: D847A6;
    text-decoration: underline;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
    
    
}
.logo{
    width: 150px;
    float: left;
    margin-top: 40px;

}
.menu{
    margin-top: 30px;
    width: 50px;
    float: right;
}
h1{
    color:  D847A6;
    font-size: 70px;
    text-align: center;
}
.card-container{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}
.card{
    padding-bottom: 30px;
    justify-self: center;
    text-align: center;
}
h2{
    font-size: 40px;
}
p{
    font-size: 20px;
}
@media (max-width:680px){
    body{
        align-content: center;
        margin-left: 0;
    }
    header, h1{
        font-size: 40px;
        text-align: center;
    }
    .card-container{
        display: flex;
        flex-direction: column;
        width: 500px;
    }
    img{
        width: 300px;
    }
}