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

html {
  font-size: 62.5%;
}
p {
  font-size: 1.8rem;
}

.container {
  width: 90%;
  margin: 0 auto;
}
/* cabecera */
.cabecera {
  background-image: url(../img/banner-concurso-aji.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 10rem;
  width: 100%;
  z-index: 100;
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  line-height: 1.8rem;
  text-align: left;
}
@media (min-width: 37.5rem) {
  .cabecera {
    height: 20rem;
  }
}

@media (min-width: 64rem) {
  .cabecera {
    height: 25rem;
  }
}

@media (min-width: 90rem) {
  .cabecera {
    height: 37rem;
  }
}

/* fin de cabecera */

/* informacion */
.informacion h1 {
  font-size: 4rem;
  padding: 1.8rem;
  margin-right: 4rem;
  font-weight: bold;
}

.informacion h2 {
  font-size: 2rem;
  padding: 1.5rem;
  margin-right: 4rem;
}
/* fin informacion */

/* documentos */
.documentos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
}
@media (min-width: 37.5rem) {
  .documentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
  }
}
.ladoA {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 2rem;
}
.documentos a {
  text-decoration: none;
  color: rgb(1, 1, 1);
  font-size: 2rem;
  font-weight: bold;
  font-family: sans-serif;
  background-color: #b6e106;
  padding: 2rem;
  border-radius: 2rem;
  text-align: center;
}
.documentos a:hover {
  background-color: #84cd0653;
  color: rgb(65, 64, 64);
  font-size: 2.1rem;
  transition: 0.4s;
}

.btn-inscripcion {
  text-decoration: none;
  color: rgb(1, 1, 1);
  font-size: 1.6rem;
  font-weight: bold;
  font-family: sans-serif;
  background-color: #e17706;
  padding: 2rem;
  border-radius: 2rem;
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

@media (min-width: 37.5rem) {
  .btn-inscripcion {
    width: 50%;
  }
}

.btn-inscripcion:hover {
  background-color: #b6e106;
  transition: 0.4s;
  font-size: 1.7rem;
}

.boton {
  padding: 2rem;
}

.ladob {
  padding: 2rem;
}
/* fin documentos */

footer {
  background-color: green;
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 2rem;
}
.img-pago {
  display: block;
  width: 100%;
}
