body {
  font-family: 'Tahoma', sans-serif;
  background: #d8eaff;
  margin: 0;
  text-align: center;
  color: #333;
  padding-bottom: 50px;
}

.container {
  padding: 40px 20px;
}

h1 {
  color: #004080;
}

.btn {
  display: inline-block;
  background: #0077cc;
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
  margin: 20px 10px;
  text-decoration: none;
  font-weight: bold;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 180px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.book {
  max-width: 600px;
  background: white;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 30px;
  margin-top: 30px;
}

.nav-btns button {
  background: #0077cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 5px;
}

.page-num {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}
.animated-text-section {
  margin-top: 60px;
  padding: 30px 20px;
  background: linear-gradient(to right, #e0f7ff, #ffffff);
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(0, 102, 204, 0.1);
  animation: fadeIn 2s ease;
}

.glow-text {
  font-size: 22px;
  font-weight: bold;
  color: #004080;
  text-shadow:
    0 0 8px #7dd3fc,
    0 0 16px #38bdf8,
    0 0 24px #0ea5e9;
  transition: opacity 1s ease-in-out;
  min-height: 80px;
}

.footer-date {
  font-size: 16px;
  color: #444;
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .glow-text {
    font-size: 18px;
  }
  .footer-date {
    font-size: 14px;
  }
}
.footer-image {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}