body {
  font-family: "Fira", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: black;
  background-color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  text-align: left;
  margin-bottom: 3em;
  height: 5em;
  position: relative;
  color: black;
  span {
    display: inline-block;
  }
  a {
    text-decoration: none;
    display: inline-block;
  }
  svg {
    position: absolute;
    right: 1em;
    top: 50%;
    color: black;
    transform: translateY(-25%);
  }
  div {
    margin: 0 auto;
  }
  h1 {
    font-size: 2em;
    padding-bottom: 0;
    span {
      color: $text-light-color;
      font-weight: 300;
    }
  }
}

p {
  font-size: 1em;
  line-height: 1.8em;
}

h1 {
  font-size: 2.25em;
  line-height: 1.8em;
}

h2 {
  font-size: 1.5em;
  line-height: 1.8em;
  padding: 1em 0 0 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }

  header {
    background-color: black;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  svg {
    color: white;
    stroke: white;
  }
}
