*{
    box-sizing: border-box;
}

body{
    background-color: white;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
div{
    justify-content: space-between;
    width: 60%;
    flex-wrap: wrap;
    display: flex;
    border-bottom: 4px dotted grey;
    padding-bottom: 20px;
}
h1{
    width: 100%;
    background-color: red;
    color: white;
}
section{
    width: 75%;
}
img{
    margin: auto 10px;
    width: 22%;
}
div:nth-child(2){
    flex-direction: row-reverse;
}
h2{
    color: grey;
}
h3{
    color: red;
}
p{
    color: grey;
}

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

}

@media screen and (max-width: 576px){
    img{
        width: 100%;
    }
    div:nth-of-type(2){
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
}