body {
  margin: 0;
  padding: 0;
  color: #2e2a25;
  font-family: 'EB Garamond', serif;
  background: linear-gradient(270deg, #f8f5f0, #e1d4c0, #c3b091, #8d8270, #d4a373);
  background-size: 800% 800%;
  animation: sunsetShift 60s ease infinite;
  background-image:
    url('https://www.transparenttextures.com/patterns/paper-fibers.png'),
    linear-gradient(270deg, #f8f5f0, #e1d4c0, #c3b091, #8d8270, #d4a373);
  background-blend-mode: multiply;
}

header {
  text-align: center;
  padding: 3rem 1rem;
  background-color: rgba(60, 50, 40, 0.8);
  color: #f8f5f0;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: #f8f5f0;
  text-decoration: none;
  margin: 0 1rem;
  font-family: 'IM Fell English', serif;
  font-size: 1.1rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 750px;
  margin: auto;
  padding: 2rem;
}

.poem h2 {
  font-family: 'IM Fell English', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.poem p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #7a6f64;
  background-color: rgba(60, 50, 40, 0.05);
}

@keyframes sunsetShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
