*{
    box-sizing: border-box;
}
body{
    display: flex; /*caja felxible */
    flex-wrap: wrap; /* (nowrap)--> obligado a que se reajuste sola (wrap)--> si no cabe en la misma linea salta a la siguiente */
    justify-content: space-between; /* ajusta el principio y al final y la otra lo distibuye al medio (space-arround)--> no importa los lados, todos se ajustan */
}
article{
    width: 32%;
}
img{
    width: 100%;
}
h1{
    font-size: 1.5em;
    color: rgb(68, 68, 68);
}
p:first-of-type{
    text-align: justify;
    color: rgb(83, 84, 85);
}
p:last-of-type{
    color: blue;
}