/* Estilos para el cuerpo de la página */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Estilos para el encabezado */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

/* Estilos para la navegación */
nav {
  background-color: #f4f4f4;
  text-align: center;
  padding: 1rem;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
}

nav a:hover {
  background-color: #ddd;
}

/* Estilos para los tamaños de texto */

/* Títulos */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  
  h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  h5 {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
  }
  
  h6 {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
  }
  
  /* Párrafos */
  div{
    text-align: start;
  }
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Enlaces */
  a {
    font-size: 2rem;
    line-height: 1.6;
    text-decoration: none;
    color: #007bff;
  }
  
  a:hover {
    text-decoration: underline;
  }