@font-face {
  font-family: "Comic Neue Angular";
  #font-license: "/fonts/OFL.txt";
  src: local("Comic Neue Angular Regular"),
  local("Comic Neue Angular-Regular"),
  url("/fonts/ComicNeueAngular-Regular.woff2") format("woff2"),
  url("/fonts/ComicNeueAngular-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "VT323";
  #font-license: "static/OFL.txt";
  src: local("VT323 Regular"),
  local("VT323"),
  url("VT323-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --light-color: #FAFAFA;
  --dark-color: #363636;
  --red-color: #E05951;
  --font: "Comic Neue Angular", monospace;
}
html, body {
  margin: 0;
  height: 100%;
  color: var(--dark-color);
  background-color: var(--light-color);
  font-family: "VT323", monospace;
}
#top {
  display: block;
  width: 100%;
  height: 314px;
  overflow: hidden;
}
#map {
  display: absolute;
  z-index: 1;
  width: 100%;
  height: 314px;
  opacity: 0.75;
}
#top>h1, #top>span {
  position: absolute;
  z-index: 2;
  left: 0%;
  right: 0%;
  text-align: center;
}
#top>h1 {
  font-size: 192px;
  top: -120px;
}
#top>span {
  font-size: min(48px, 5vw);
  font-weight: bold;
  top: 210px;
}
@media (max-width: 700px) {
  #top>span {
    font-size: 24px;
  }
}
main {
  font-family: var(--font);
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;

}
main>article {
  width: 90%;
  font-size: 1.41em;
  text-align: justify;
}
@media (min-width: 1200px) {
  main>article {
    width: 75%;
  }
}
@media (min-width: 1400px) {
  main>article {
    width: 1050px;
  }
}
dl {
  display: grid;
  grid-template-columns: max-content auto;
}
dt {
  grid-column-start: 1;
}
dd {
  grid-column-start: 2;
}
input[type=checkbox] {
  margin-left: 21px;
  margin-right: -16px;
}
.map {
  display: block;
  width: 450px;
  height: 314px;
}
pre {
  border: 2.5px solid var(--dark-color);
  border-radius: 10px;
  padding: 10px;
  background-color: #F0F0F0;
  overflow: scroll;
  max-height: 525px;
}
#live-demo {
  border: 2.5px solid var(--dark-color);
  border-radius: 10px;
  padding: 5px;
  background-color: #F0F0F0;
}
.column {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 0 10px;
  grid-auto-flow: dense;
}
.column-left {
  grid-column-start: 1;
}
.column-right {
  grid-column-start: 2;
}
.margin-zero {
  margin: 0;
}
@media (max-width: 1200px) {
  .column {
    grid-template-columns: auto;
    grid-gap: 0 0;
  }
  .column-left, .column-right {
    grid-column-start: 1;
  }
  .map {
    width: 100%;
  }
}
.asciinema-player-theme-cdxe {
  --term-color-foreground: var(--dark-color);
  --term-color-background: #F0F0F0;
}
.router-icon {
  display: block;
  background-color: var(--red-color);
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
