body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #0b0c10;
  color: #d4af37;
}

nav {
  background-color: #1c1c1c;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0;
  border-bottom: 2px solid #50c878;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #50c878;
}

h1 {
  text-align: center;
  margin-top: 80px; /* para compensar nav fijo */
  color: #50c878;
  text-shadow: 2px 2px #000;
}

.curiosidades-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.curiosidad {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #1c1c1c;
  border: 2px solid #50c878;
  border-radius: 15px;
  padding: 20px;
}

.curiosidad img {
  width: 80px;
  height: 80px;
}

.curiosidad p {
  font-size: 16px;
  line-height: 1.5;
}

.curiosidad:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #d4af37;
  transition: 0.3s ease;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #50c878;
  font-style: italic;
  margin-top: 40px;
}

.cita {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-style: italic;
  color: #cfc18b;
}
