body {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #000000;
  font-family: sans-serif;
}

table {
  display: block;
  overflow-x: scroll;
  width: 100%;
  font-size: 14px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

a:hover {
  background-color: #eeeeee;
}

#content {
  flex: 1;
  overflow-wrap: break-word;
}

#header h1 {
  text-align: center;
  width: 100%;
  float: left;
}

#navlinks {
  text-align: center;
  padding: 0;
}

#navlinks li {
  display: inline-block;
  font-size: 18px;
  line-height: 2.5em;
  margin-left: 5px;
  margin-right: 5px;
}

.linkblock li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.linkblock li:before {
  content: "=>";
  padding-right: 10px;
}

.fingerprint, code {
  background: #eeeeee;
  font-family: monospace;
}

.hash, .hash .fingerprint {
  display: inline-block;
}

.extlink:after {
  vertical-align: super;
  content: "⇗";
}

#date {
  margin-bottom: 30px;
}

#important {
  display: none;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #111111;
    color: #ffffff;
  }
  tr:nth-child(even) {
    background-color: #222222;
  }
  a {
    color: #0099fe;
  }
  a:hover {
    background-color: #333333;
  }
  .fingerprint, code {
    background: #222222;
  }
}

@media screen and (min-width: 564px) {
  body {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
  #header {
    width: 100%;
  }
  #header h1 {
    text-align: left;
    width: auto;
  }
  #navlinks {
    text-align: initial;
    float: right;
  }
  #navlinks li {
    margin-left: 10px;
    margin-right: auto;
  }
  #content, h2, h3, p, .nna {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
