*{
    box-sizing: border-box;
    
}
body{
    margin: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
article {
    width: 60%;
    border-bottom: dotted gray;
    margin: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    
}


h1{
    width:100%;
    background-color: red;
    color: white
}
img{
    align-items: left;
    margin-right: 8px;
}




h3{
   
    color: grey;
    font-size: 1.5em;
    

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

}
p:last-of-type{
    color: gray;
}

article:nth-of-type(2){
    justify-content: space-between;
    width: 60%;
    border-bottom: dotted gray;
    margin: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    
}

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