* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo img {
 display: block;
 margin: auto;
 max-width: 12rem;
 padding-bottom: 1rem;
}

body{
  background: rgb(254, 242, 225);/*beige*/
}
/*header {
  width: 100%;
  padding:20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}*/

main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #343434; /*gris oscuro*/
  padding: 1rem;
  }

section {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: center;
    justify-content: space-between;
}

div img {
  width: 100%;
}

article {
  width: 33%;
  padding:0.5rem;
}

article div {
 text-align: center;
 background:#faa22e; /*naranja fuerte*/
 padding-bottom: 2rem;

}

div a{
 text-align: center;
 text-decoration: none;
 font-size: 1rem;
 color: #fff; /*blanco*/
}


aside {
  width: 30%;
  background: rgb(255, 215, 154);/*naranja claro*/
  padding: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}


aside p {
width: 100%;
text-align: center;
display: inline-block;
text-decoration: none;
color: #606060; /*gris oscuro*/
font-size: 0.9rem;
padding: 0.5rem;
}



footer {
  font-size: 0.8rem;
  color: #fff;
  width: 100%; /* Establecemos que el header abarque el 100% del documento */
  overflow: hidden; /* Eliminamos errores de float */
  background: #909090; /*gris*/
  padding: 2rem 3rem 2rem 3rem;
}
