:root {
  color-scheme: only light;
  --paper: #fffaf2;
  --white: #fffefd;
  --ink: #2d261f;
  --muted: #6f665c;
  --line: rgba(45, 38, 31, 0.16);
  --sun: #f0b63f;
  --ochre: #c86f3f;
  --lavender: #7562a8;
  --lavender-dark: #4f4277;
  --olive: #56683d;
  --blue: #357d9d;
  --shadow: 0 20px 60px rgba(45, 38, 31, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  scroll-behavior: smooth;
}

body {
  color-scheme: only light;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(117, 98, 168, 0.08) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 72px 72px;
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.5rem, 15vw, 10.5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}
