body {
  display: flex;
  justify-content: center;
  counter-reset: h2counter;
  padding: 0;
}

#content {
  max-width: 900px;
  background-color: rgba(0,0,0,0.1);
  padding: 60px;
  padding-top: 100px;
}

a {
  color: var(--fg-accent);
  text-decoration: none;
}

p, ul {
  font-size: 1em;
  line-height: 1.5;
}

h1 {
  counter-reset: h2counter;
}

h2::before {
/*  content: counter(h2counter) ". ";*/
  counter-increment: h2counter;
}

code {
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}
pre {
    padding: 10px;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.2);
}
