/* Fondo general */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #f5f5dc;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Barra de menú */
header {
  background-color: #2e8b57; /* Verde tipo bosque */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 50px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

nav a:hover {
  background-color: #3cb371; /* Verde más claro */
  border-radius: 5px;
}

/* Contenido de la portada */
.portada {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.contenido {
  background-color:#D32F70;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 24px;
  margin-top: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ddd; /* Dorado */
}

p {
  font-size: 16px;
  margin: 5px 0;
}

.agradecimiento {
  margin-top: 30px;
  font-size: 18px;
  font-style: italic;
  color: #ddd; /* Beige claro */
}
