
:root {
  color-scheme: dark;
  --background: #000;
  --primary-text: #fff;
  --secondary-text: #cfcfcf;
  --accent: #ff6a00;
  --border: #222;
  --surface: #0b0b0b;
  --hover-surface: #111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--primary-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 20px 64px;
}

.header {
  margin-bottom: 28px;
}


a {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header a {
  color: #cfcfcf;
}

.header a:hover,
.header a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1 {
  font-size: 2.1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

h2 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fff;
}



  color: var(--primary-text);
  text-decoration: none;
}
p + p {
  margin-top: 10px;
}

h2 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--primary-text);
}

  .subtitle,
  .muted,
  .secondary {
    color: var(--secondary-text);
  }
  color: #cfcfcf;
}
