body {
  margin: 0;
  font-family: monospace;
  background: #000;
  color: #00ffee;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boot #splash {
  text-align: center;
  animation: fadein 2s ease-out forwards;
}
.robot {
  max-width: 200px;
  margin-bottom: 1em;
}
#bootText {
  color: #00ffee;
  white-space: pre-wrap;
}
.hidden {
  display: none;
}
#terminalWrapper {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 2em;
}
.terminal-output {
  flex: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 1em;
}
#terminalInput {
  background: #000;
  border: none;
  color: #00ffee;
  font-size: 1em;
  padding: 0.5em;
  border-top: 1px solid #00ffee;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}