body {
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  background-color: black;
  color: white;
  transition: 1s;
}

#terminal {
  width: fit-content;
  height: fit-content;
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
}
#output {
  white-space: pre-wrap;
  margin: 0;
  padding: 0;
}
#input-line {
  margin: 0;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  color: cyan;
}
.prompt {
  color: cyan;
}

.message {
  color: white;
}

.option {
  color: gray;
}

canvas {
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
