:root {
  --ink: #151515;
  --paper: #F7F6F1;
  --paper-dot: #cfcdc4;
  --muted: #6b6b64;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Kalam", "Comic Sans MS", cursive;
  font-size: 1.05rem;
  line-height: 1.65;
  background-color: var(--paper);
  background-image: radial-gradient(var(--paper-dot) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

h1, h2 {
  font-family: "Baloo 2", "Kalam", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

a { color: inherit; }

/* ---------- SECTIONS ---------- */

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 0;
}

.sketch-section {
  padding: 2.75rem 0;
  border-bottom: 2.5px dashed var(--ink);
}

.sketch-section:last-of-type { border-bottom: none; }

.section-head { margin: 0; }

h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0; text-transform: uppercase; }
