article{/* Estilos de los contenedores generales de secciones */
  width: 100%;
  margin: 1rem auto;
  padding: 2rem 0;
  text-align: center;
}
article h2, h3{
  font-weight: normal;
}
.contenedorArticles{
  width: 75%;
  margin: auto;
}
.listaEnlaces{/*Contenedor de los enlaces a las demás páginas*/
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 0.5rem;
  text-align: center;
  margin-top: 2rem;
}
.listaEnlaces a{
  text-decoration: none;
  color: #000000;
  display: block;
  width: 75%;
  margin: 0.5rem auto;
  padding: 1rem;
  transition: all 0.4s;
}
.listaEnlaces a:hover{
  background-color: #C4D455;
}
article:nth-of-type(2){/* segundo contenedor, enlaces de 'interes'*/
  background-color: #F2A21A;
}
.mostrario{/* contenedor de imagenes*/
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.5rem;
  margin-top: 1.5rem;
}
.mostrario a{
  text-decoration: none;
  color: #000000;
  display: block;
}
.mostrario img{
  max-width: 80%;
  border-radius: 2rem;
}
.mostrario span{
  display: block;
  margin-top: 0.6rem;
}
.mostrario a:hover{
  text-decoration: underline;
}
.mostrario a:hover img{
  border-radius: 0.8rem;
  box-shadow: 2px 2px 5px #2b2b2b;
}
.textoInformativo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
  text-align: left;
}
.textoInformativo p{
  margin: 1rem auto;
}
.textoEspecial{
  font-style: oblique;
  font-size: 1.1rem;
  font-weight: bold;
  color: #D5581C;
}
.textoInformativo a{
  color: #D5581C;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 1.2rem;
}
.textoInformativo a:hover{
  color: #474D9A;
}
#llamadaAccion{
  color: #fff;
  background-color: #E1281E;
  display: block;
  width: 50%;
  padding: 1.5rem;
  margin: auto;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 3rem;
  box-shadow: 2px 2px 5px #033d00;
  transition: all 0.3s;
}
#llamadaAccion:hover{
  background-color: #D5581C
}
.imagenTextoInformativo{
  position: relative;
  width: 100%;
  margin: 25% 0;
}
.imagenTextoInformativo img{
  max-width: 90%;
  position: relative;
  margin: 5rem 1rem;
}
.azul{
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  min-height: 4rem;
  border-top: 0.5rem solid #78BAE4;
  border-left: 0.5rem solid #78BAE4;
  border-radius: 0.5rem;
}
.amarillo{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  min-height: 4rem;
  border-bottom: 0.5rem solid #F5EA46;
  border-right: 0.5rem solid #F5EA46;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 850px){
  .contenedorArticles{
    width: 80%;
  }
  .mostrario img{
    border-radius: 1rem;
  }
  #llamadaAccion{
    padding: 1.2rem;
  }
}
@media only screen and (max-width: 700px){
  .contenedorArticles{
    width: 90%;
  }
  .listaEnlaces{
    display: block;
  }
  .mostrario{
    display: block;
  }
  .mostrario img{
    max-width: 60%;
  }
  .textoInformativo{
    display: block;
  }
  .imagenTextoInformativo{
    margin: 2rem auto;
  }
  #llamadaAccion{
    padding: 1rem;
  }
}
