/* Estilos generales del cuerpo */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
  color: #2c2c2c;
  background-color: #f9f9f9;
}

/* Encabezado principal */
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: 700;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

/* Párrafos */
p {
  font-size: 1.125rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

/* Imágenes */
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Subtítulos */
h2, h3, h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #444;
}

/* Enlaces */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #004999;
  text-decoration: underline;
}

/* Citas */
blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background-color: #fff3cd;
  border-left: 5px solid #ffecb5;
  font-style: italic;
  color: #665c00;
}

/* Código */
pre, code {
  background-color: #f4f4f4;
  padding: 0.3em 0.6em;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  border-radius: 4px;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  body {
    margin: 20px auto;
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

