@font-face {
  font-family: "petscii";
  src: url(petscii.woff2);
}
body {
  align-items: center;
  background-color: darkolivegreen;
  color: black;
  cursor: none;
  display: flex;
  flex-direction: column;
  font-family: "petscii", monospace;
  font-size: 1em;
  height: 100vh;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  width: 100vw;
}
.blink {
  animation: blink 1s step-end infinite;
}
.help-menu {
  display: grid !important;
  gap: 0 1ch;
  grid-template-columns: 24ch 36ch 1ch;
  height: auto !important;
  left: 50%;
  max-height: 80vh;
  min-width: 40ch;
  overflow-y: auto;
  padding: 0 !important;
  position: fixed;
  scrollbar-width: none;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: pre;
  width: fit-content !important;
  z-index: 10;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 10s linear infinite;
}
#pane {
  background-color: black;
  color: lawngreen;
  flex-grow: 1;
  outline: none;
  overflow-y: scroll;
  padding-bottom: 1.2em;
  padding-top: 1.2em;
  position: relative;
  scrollbar-width: none;
  white-space: pre-wrap;
  width: 80ch;
}
.phone-book {
  display: grid !important;
  gap: 0 1ch;
  grid-template-columns: max-content 12ch max-content 12ch 1ch;
  height: auto !important;
  left: 50%;
  max-height: 80vh;
  min-width: 40ch;
  overflow-y: auto;
  padding: 0 !important;
  position: fixed;
  scrollbar-width: none;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  width: fit-content !important;
  z-index: 10;
}
#song_title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  width: 30ch;
  position: relative;
}
.terminal {
  align-items: center;
  background-color: lawngreen;
  box-sizing: border-box;
  color: black;
  display: flex;
  height: 1.2em;
  margin: 0;
  padding: 0 0.5em;
  scrollbar-width: none;
  width: 80ch;
  z-index: 10;
}
.terminal.phone-book {
  width: 70ch;
}
