body {
  background: #fff2ff;
  margin: 1rem auto;
  color: #3c383c;
  font-family: system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 48rem;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
b,
hr {
  color: #1a161a;
}

a:hover,
a code:hover {
  text-decoration: none;
}

pre,
code {
  background: #eee1ee;
}

nav * {
  margin-right: 1rem;
}

img {
  max-width: 100%;
}

figure {
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1a161a;
    color: #ddccdd;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  a,
  b,
  hr {
    color: #ffeeff;
  }

  pre,
  code {
    background-color: #2b272b;
  }
}