@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;700&display=swap');

.poem-container {
  font-family: 'Noto Serif TC', serif;
  text-align: center;
  line-height: 1.8;
  color: #333;
  font-size: 1.2rem;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
}

.poem-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.poem-line.show {
  opacity: 1;
  transform: translateY(0);
}

.Title-be {
  font-family: 'Noto Serif TC', serif;
  margin: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.section-content {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: 20px;
}

.Title-be h2 {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.section-content p {
  text-align: center;
  margin: 0;
  line-height: 1.6;
  color: #555;
}