body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #fff0f0, #ffd6d6);
  font-family: 'Georgia', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  overflow-x: hidden;
}

.flor-container {
  width: 160px;
  height: 160px;
  margin-top: 20px;
  animation: latido 3s infinite;
  cursor: pointer;
}

.flor {
  width: 100%;
  height: 100%;
}

@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.poema {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px;
  margin: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  max-width: 90%;
  opacity: 0;
  transition: opacity 2s ease;
}

.poema h2 {
  color: #b30000;
  font-family: 'Playfair Display', serif;
  font-size: 1.3em;
  margin-bottom: 8px;
}

.poema p {
  font-size: 1em;
  color: #444;
  line-height: 1.5;
  font-style: italic;
}

.firma {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2em;
  color: #990000;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 1.5s ease;
}
