/* Base layout */
body {
  margin: 0;
  padding: 0;
  font-family: Helvetica;
  background-color: #fdfdfb;
  color: #222;
  line-height: 1.5;
}

/* Chapter container */
p {
  max-width: 32rem;      /* narrower = book-like line length */
  margin: 3rem auto;     /* vertical breathing room */
  padding: 0 1.25rem;
}

/* Chapter title */
h1 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Paragraph styling */
.chapter p {
  margin: 0 0 1.3rem 0;
  text-align: justify;
  hyphens: auto;
}

/* First paragraph spacing */
.chapter p:first-of-type {
  margin-top: 2rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .chapter {
    max-width: 28rem;   /* still narrow on phones */
    margin: 1.5rem auto;
  }

  .chapter h1 {
    font-size: 1.5rem;
  }
}

/* Larger desktop screens */
@media (min-width: 1000px) {
  body {
    font-size: 1.3rem;
  }

  .chapter {
    max-width: 36rem;
  }
}

