.about{
    margin: 50px 0px 50px 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 10px;
}
.about.greybg{
    color: #F4EBD9;
}
.about h2{
    font-size: 28px;
    font-weight: 500;
    color: #F0544F;
}
.about img{
    width: 80%;
    margin: 10px;
}
.about p{
    margin: 15px;
}
@media only screen and (min-width: 800px){
    .about{
        width: 50%;
        flex-direction: row;
    }
    .about div img{
        min-width: 300px;
    }
}