/* Fuente y base visual */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  background-color: #f1f3f5;
  color: #2e2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor principal */
.container {
  max-width: 900px;
  padding: 3rem;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin: 2rem;
  overflow-y: auto;
  max-height: 95vh;
}

/* Títulos */
h1, h2 {
  color: #123a6d;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  border-left: 4px solid #0056b3;
  padding-left: 10px;
}

/* Párrafos */
p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* Enlaces */
a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Listas */
ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

ul li {
  margin-bottom: 0.7rem;
}

/* Negritas */
strong {
  font-weight: 600;
  color: #333;
}

/* Imagen inferior */
a img {
  display: block;
  margin: 2rem auto 0;
  width: 60px;
  transition: transform 0.2s ease;
}

a img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 2rem;
    margin: 1.5rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }
}
