/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f2f2f2;
  background: #050509;
  overflow-x: hidden;
}

/* Fondo de estrellitas */
.stars {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8), transparent 40%),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,0.5), transparent 40%),
    radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.7), transparent 40%),
    radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.5), transparent 40%),
    radial-gradient(1px 1px at 20% 55%, rgba(255,255,255,0.4), transparent 40%),
    radial-gradient(1px 1px at 55% 75%, rgba(255,255,255,0.4), transparent 40%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 42px 18px 70px;
  position: relative;
  z-index: 2;
}

.header {
  text-align: center;
  margin-bottom: 22px;
}

.header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.sub a {
  color: #ffd34a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.sub a:hover {
  color: #ffe07a;
}

.card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.desc {
  line-height: 1.65;
  opacity: 0.92;
  font-size: 1.05rem;
}

.card h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: lowercase;
}

/* Collage */
.collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collage img {
  width: 100%;
  height: auto; /* altura automática */
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  filter: none;
  box-shadow: 0 12px 25px rgba(0,0,0,0.55);
  transition: transform 0.18s ease;
}

.collage img:hover {
  transform: scale(1.04) rotate(0deg) !important;
}

/* Texto pequeño */
.note {
  margin-top: 14px;
  opacity: 0.6;
  font-size: 0.95rem;
}
.poem p {
  line-height: 1.75;
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 14px;
  text-align: center;
}

.translation {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
}

.footer {
  text-align: center;
  opacity: 0.55;
  margin-top: 28px;
  letter-spacing: 2px;
}


.poem-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 18px auto 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 25px rgba(0,0,0,0.45);
}