body {
  background-color: #000;
  color: #ffa86a;
  font-family: monospace;
  padding: 2rem;
  cursor: none;
  white-space: pre;
  overflow-x: auto;
  font-size: 1rem;
}

#bootlog {
  white-space: pre;
}

input {
  all: unset;
  font-family: monospace;
  font-size: 1em;
  color: #ffa86a;
  background-color: transparent;
  caret-color: #ffa86a;
  width: 80ch;
}

input:focus {
  outline: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.blink {
  animation: blink 1s step-start infinite;
  color: #ffa86a;
}
