@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Base styling */
body {
  font-family: 'Poppins', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: #000000;
  margin: 1rem;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 600;
  margin-top: 2rem;
}

/* Paragraph spacing */
p {
  margin: 1rem 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Page breaks for chapters */
h1 {
  page-break-before: always;
}
h1:first-of-type {
  page-break-before: avoid;
}

/* Optional: code blocks */
pre, code {
  background: #f8f8f8;
  font-family: monospace;
  font-size: 0.9rem;
  padding: 0.1em 0.1em;
  border-radius: 4px;
}
