body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: url('chapter1bg.png') no-repeat center top fixed;
  background-size: cover;
  color: #4a3c2c;
  line-height: 1.8;
  font-size: 17px;
  overflow-x: hidden;
  background-color: #f8f5f2;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdf8f3;
  padding: 15px 30px;
  border-bottom: 2px solid #e0d6cc;
  font-family: 'Georgia', serif;
  color: #5a4b3f;
}

.home-icon {
  font-size: 24px;
  text-decoration: none;
  color: inherit;
}

.about-link {
  text-decoration: none;
  background-color: #e6d9cb;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  color: #5a4b3f;
}

.page-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  min-height: 100vh;
  padding: 0;
}

.chapter {
  max-width: 720px;
  margin: auto;
  padding: 60px 20px;
}

.chapter h1 {
  color: #4a5a6a;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #d9c8b4;
  padding-bottom: 10px;
}

.paragraph {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
  margin-bottom: 24px;
}

.paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}

.next-button {
  display: inline-block;
  background-color: #d9c8b4;
  color: #4a3c2c;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin: 60px auto 20px;
  display: block;
  width: fit-content;
}

.next-button:hover {
  background-color: #cbb79d;
  transform: translateY(-2px);
}

footer {
  text-align: center;
  font-size: 14px;
  color: #a78b7b;
  margin: 80px 0 40px;
}
