main > p{
background: red;
}
img + p{
background: yellow;
}
img ~ p{
background: green;
}
.principal p:not(#mision){
background: orange;
}
.principal em{
font-style: italic;
}
.utensilios{
width: calc(30% - (40px * 4));
float: left;
margin: 0 20px 20px 0; /*Siempre en sentido horario se leen los márgenes*/
}
.mapa{
padding: 3em 0; /*3em es tres veces la referencia al tipo de fuente, entonces queremos un tamaño tres veces el tamaño de la fuente */
background: linear-gradient(#FEFEFE, #888888);
}