*{
    box-sizing: border-box;
}
    
body{
    width: 100%;
    display: flex;
    flex-wrap: wrap;

}

img{
    width: 20%;
}
h1{
    width: 100%;
    color: white;
    background-color: red;
    padding: 5px;
}
h2{
    color: grey;

}
h3{
    color: red;
}

div{
    width: 60%;
    border-bottom: grey 2px dotted;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    padding-bottom: 40px;
    justify-content: space-between;
    

}
p{
    color: grey;
    font-size: 19px;


}
section{
    width: 70%;
    padding-top: 50px;

}
div:nth-of-type(2){
    flex-direction: row-reverse;
}
