body {
  margin: 0;
  font-family: 'Indie Flower', cursive;
  background-color: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.7;
  padding: 1rem;
  background-image: url('moyacul.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid #222;
  padding-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.1);
}

.tagline {
  font-style: italic;
  color: #888;
  margin-top: -10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #bbb;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

.poem {
  background: rgba(26, 26, 29, 0.7);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-left: 4px solid #444;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  animation: fadeIn 1.2s ease-in;
}

.poem h2 {
  font-size: 1.6rem;
  color: #a983f5;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  animation: glowTitle 2s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 5px #a983f5, 0 0 10px #a983f5, 0 0 15px #6e44b3;
  }
  to {
    text-shadow: 0 0 10px #c0a8ff, 0 0 20px #7b4de6, 0 0 25px #a983f5;
  }
}

.poem p {
  white-space: pre-wrap;
  font-size: 1.1rem;
  color: #ddd;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Indie+Flower&display=swap');