/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(180deg, #ffe4ef, #fff7fb);
  color: #333;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Reading container */
.container {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.35);
}

/* Title */
h1 {
  text-align: center;
  color: #ff6fae;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

/* Paragraphs */
p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Links */
a {
  color: #ff6fae;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Italic thoughts / soft moments */
.thought {
  font-style: italic;
  color: #777;
}

/* Chapter label */
.chapter {
  text-align: center;
  font-weight: 600;
  color: #ff9fc7;
  margin-bottom: 25px;
}

hr {
  border: none;
  height: 10px;
  background: #ffd1e6;
  margin: 40px 0;
}