body {
  font-family: 'Codelia', 'Comic Code Ligatures', 'Comic Code', 'Comic Shanns', 'Fira Code', monospace;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 80ch;
  min-height: 100vh;
  font-size: 20px;
}

main {
  padding: 1.5em;
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #fefefe;
    color: #020202;
  }
  .trans {
    background: linear-gradient(to right,
      #5bcefa,
      #f5a9b8,
      #ebebeb,
      #f5a9b8,
      #5bcefa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #020202;
    color: #fefefe;
  }
  .trans {
    background: linear-gradient(to right,
      #5bcefa,
      #f5a9b8,
      #fff,
      #f5a9b8,
      #5bcefa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #5bcefa;
}

a:hover {
  color: #f5a9b8;
}

h2 {
  margin-bottom: 0.25rem;
}

.translated {
  font-size: 80%;
  font-style: italic;
}

footer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 0;
  width: 100%;
  text-align: center;
}

