
    body {
      background: #f9f8f7;
      font-family: Helvetica, sans-serif;
      color: #1a1a1a;
      padding: 2rem;
      margin: 0;
    }

    h1 {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .poem-container {
      width: 700px;
      max-width: 100%;
      margin: 0 auto;
      font-family: 'EB Garamond', serif;
      font-size: 1rem;
      line-height: 2;
    }

    .poem-line {
      display: block;
    }

    .poem-line span {
      display: inline-block;
      transition: color 0.3s ease;
      cursor: default;
      min-width: 0.2em; /* ensures space takes up room */
    }

    .poem-line span:hover {
      color: #0000FF;
    }

    nav {
      text-align: center;
      margin-bottom: 2rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      letter-spacing: -1.5px;
    }

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

    .arrow {
      font-size: 1rem;
      color: #4b3b82;
      text-decoration: none;
      border: 1px solid #4b3b82;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      transition: all 0.3s ease;
      letter-spacing: -1.5px;
    }

    .arrow:hover {
      background: #4b3b82;
      color: white;
    }

    footer {
      text-align: center;
      font-size: 0.8rem;
      color: #888;
      margin-top: 4rem;
      padding-bottom: 1rem;
    }
  