:root {
  --bg: #151515;
  --fg: #e4e4ef;
  --accent: #96a6c8;
  --green: #73c936;
  --green-2: #72a051;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg);
  color: var(--fg);
  font-size: 1.1em;
}

li {
  list-style-type: square;
}

#content-wrapper {
  max-width: 600px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

h1,
h2 {
  font-weight: normal;
  color: var(--accent);

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

  &>a:visited {
    color: inherit;
  }

  &:hover>a {
    text-decoration: underline;
    text-decoration-style: dashed;
  }
}

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

a:visited {
  color: var(--green-2)
}

a:hover {
  color: var(--green);
  text-decoration-style: dashed;
}


.two-columns-wrapper {
  display: flex;
  flex-basis: 50%;
  flex-wrap: wrap;
  justify-content: space-between;
}

main>h2:first-child {
  margin-top: 0;
}

footer {
  padding-top: 1em;

  hr {
    max-width: 60%;
    margin-bottom: 1.5em;
  }
}

code {
  text-wrap: wrap;
}