/* Import cute font */
@import url('https://fonts.googleapis.com/css2?family=Cherry+Swash&display=swap');

body {
  margin: 0;
  font-family: 'Cherry Swash', cursive;
  background: #fff0f5; /* light pink */
  color: #5b3758;
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(to right, #ffc8dd, #ffafcc);
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 4px dotted #ff90b3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #5b3758;
}

nav {
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: #a64e70;
  background-color: #ffe5ec;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.2s;
}

nav a:hover {
  background-color: #ffd6e0;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
}

.comic-chapter {
  margin-bottom: 4rem;
}

.comic-chapter h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #b2457b;
}

.comic-pages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.comic-pages img {
  width: 100%;
  max-width: 750px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 5px solid #ffe5ec;
}

footer {
  text-align: center;
  background-color: #ffe5ec;
  padding: 1.5rem;
  font-size: 1rem;
  color: #944d6c;
  border-top: 4px dotted #ffb3c6;
}
