* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fafafa;
  min-height: 100vh;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: #111;
}

nav {
  margin-bottom: 2rem;
}

nav a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  color: #111;
}

.poems {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.poem h2 {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.poem h2 a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.poem h2 a:hover {
  border-bottom-color: #999;
}

.poem-body {
  white-space: pre-line;
}

.poem-body p {
  margin-bottom: 1.5rem;
}

.poem-body p:last-child {
  margin-bottom: 0;
}
