*{
    box-sizing: border-box;
}

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

article{
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 4px dotted gray;
    justify-content: space-between;
    padding-bottom: 40px;
}

section{
    width: 72%;
}

h1{
    width: 100%;
    background-color: red;
    color: white;
    font-size: 2em;
}

h2{
    color: gray;
    padding: auto;
}

h3{
    color: red;
}

p{
    color: lightslategrey;
    font-size: x-large;
}

img{
    width: 25%;
    padding: 10px;
}

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