*{
    box-sizing: border-box;
}

body{
    background-color: white;
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
}

h1{
    background-color: red;
    width: 100%;
    color: white;
}

h3{
    color: grey;
}

h4{
    color: red;
}

p{
    color: darkgray;
    font-size: medium;
}



article{
    width: 60%;
    margin: 20px auto ;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px dotted black;
    justify-content: space-between;
}

section{
    width: 68%;
    font-size: 25px;
}

img{
    width: 30%;
    padding: 40px;
}

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

article:nth-of-type(2) > section{
    padding-left: 40px;
}