html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fdf8f0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #2b1d12;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}
.container {
  max-width: 38rem;
}
h1 {
  font-weight: normal;
  font-style: italic;
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
  letter-spacing: 0.05em;
}
blockquote {
  max-width: 38rem;
  margin: 0 0 2.5rem 0;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  min-height: 5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
blockquote.visible {
  opacity: 1;
}
blockquote::before {
  content: '\201C';
  margin-right: 0.15em;
}
blockquote::after {
  content: '\201D';
  margin-left: 0.15em;
}
button {
  background: #2b1d12;
  color: #fdf8f0;
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease;
}
button:hover {
  background: #4a3320;
}
button:active {
  transform: translateY(1px);
}
