
header {
  background-color: #2e8b57; /* Verde tipo bosque */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
header img {
  height: 50px;
}

/* Menú de navegación */
nav {
  display: flex;
  gap: 15px; /* Espacio entre los enlaces */
}

/* Estilo de los enlaces */
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

/* Efecto al pasar el mouse */
nav a:hover {
  background-color: #3cb371; /* Verde más claro */
  border-radius: 5px;
}
body {
  background: url('pergamino.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
  color: #3e2f1c;
  margin: 0;
  padding: 0;
}

header {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  text-align: center;
}

header img {
  max-width: 150px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3e2f1c;
  font-weight: bold;
}

.titulo-historia {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  text-align: center;
  margin: 40px 0 20px 0;
}

.historia-contenido {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.historia-contenido h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  margin-bottom: 10px;
}

.historia-contenido p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.historia-contenido img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #3e2f1c;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 40px;
}
