@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --bg: #fff;
    --accent-bg: #f5f7ff;
    --text: #212121;
    --text-light: #585858;
    --accent: #0d47a1;
    --accent-hover: #1266e2;
    --accent-text: var(--bg);
    --code: #d81b60;
    --preformatted: #444;
    --marked: #ffdd33;
    --disabled: #efefef;

    --standard-border-radius: 0px;
  }
}

body {
  grid-template-columns: 1fr 80% 1fr;
}

.nav-row {
  display: flex;
  align-items: center;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 720px) {
  .nav-row {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
}

footer {
  display: flex;
  justify-content: space-around;
}

figure {
  padding: 8px;
  margin: 8px;
}

figcaption {
  color: var(--text);
  font-size: 1rem;
}
