body {
  font-family: 'Nunito', sans-serif;
  background-color: #f5f5f5;
}

.hero {
  background: linear-gradient(135deg, #ffafbd, #ffc3a0);
  color: white;
}

.title, .subtitle {
  animation: fadeInDown 1s;
}

.box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  animation: fadeInUp 1s;
}

input.input {
  border-radius: 8px;
}

button.button {
  border-radius: 8px;
  transition: background-color 0.3s;
}

button.button:hover {
  background-color: #3273dc;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.book-window {
  text-align: justify;
}


.book-section {
  animation: fadeIn 0.5s ease-in-out;
  padding: 1rem 0;
}

.book-heading {
  color: #ffafbd;
  animation: fadeIn 1s;
}

.html2pdf__page-break {
  display: block;
  page-break-before: always;
}
