*{
    box-sizing: border-box;
}

body{
    background-color: white;
}

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

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

}

section{
    width: 65%;
    
}

h1{
    width: 100%;
    height: 35px;
    background-color: red;
    color: white;
    padding: 20px auto;
    font-size: 30px;
}

img{
    width: 30%;
    height: auto;
}

h3{
    color: gray;
    font-size: 1.8em;
}

h4{
    color: red;
    font-size: 1.3em;
}

h5{
    color: rgb(158, 156, 156);
    font-size: 1.3em;
}