/* -------------------------------------------------- */
/* Contenedor principal */
/* -------------------------------------------------- */

.info-container {
  gap: 2%;
  display: grid;
  align-items: center;
  align-content: center;
  grid-template-columns: 1fr 1fr;
}

.info-container h1 {
  font-size: 50px;
}

.info-container p {
  font-size: 20px;
}

/* -------------------------------------------------- */
/* Contenedor de fotos */
/* -------------------------------------------------- */

.info-foto {
  aspect-ratio: 4/3;
  text-align: justify-all;
}

.info-foto img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
}

/* -------------------------------------------------- */
/* Contenedor de texto */
/* -------------------------------------------------- */

.info-text ul {
  margin: 0;
  padding: 0;
  list-style: none;

  gap: 10px;
  display: grid;
  align-content: center;
  justify-content: center;
  grid-template-columns: repeat(5, 80px);
}

.info-text ul li {
  border-radius: 10px;
  background-color: #ffd469;

  aspect-ratio: 4/4;

  gap: 10px;
  display: flex;
  align-content: center;
  justify-content: center;
}

.info-text a {
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;

  color: #000000;
  background-color: #ffd469;
}

/* -------------------------------------------------- */
/* barra de busqueda del homepage */
/* -------------------------------------------------- */

#main-search {
  margin: 0 auto;
  max-width: 900px;
}

#main-search div {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* -------------------------------------------------- */
/* Mobile Settings */
/* -------------------------------------------------- */

@media only screen and (max-width: 1300px) {

}