:root {
  color-scheme: light;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Arial, sans-serif;
  --primary: #1f1f1f;
  --secondary: #74777C;
  --tertiary: #8D9196;
  --background: #ffffff;

  --text-large: 16px;
  --text-big: 14px;
  --text-normal: 13px;
  --text-small: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --primary: #eeeeee;
    --secondary: #C7C7C7;
    --tertiary: #969CA2;
    --background: #131313;
  }
}

* {
  font-family: var(--font-sans);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px;
  line-height: 1.5;
  overscroll-behavior: none;
  background: var(--background);
  color: var(--primary);
}

.wrapper {
  padding: 40px 20px;
}

.pp-container {
  max-width: 800px;
  margin: auto;
}

.section {
  margin-bottom: 40px;
}

h1 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  color: var(--primary);
  font-size: var(--text-large);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.725em;
}

p,
li {
  font-size: var(--text-big);
  line-height: 1.5;
}

p {
  margin-bottom: 1.5em;
}

ul {
  font-size: var(--text-big);
  list-style: inside;
  padding-left: 16px;
  margin-bottom: 1.5em;
}

p.footnote {
  color: var(--secondary);
  font-size: var(--text-normal);
  line-height: 1.7;
  font-weight: 400;
}

a {
  color: var(--primary);
}
