/*html, body {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  height: 100%;*/
body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(#220a00, #000000);
  font-family: monospace;
  color: #ffb347; /* amber */
  display: flex;
  justify-content: center;
  align-items: center;
}

#terminal {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow:
    0 0 20px #ffb34755,
    inset 0 0 15px #ffb34722;
  width: 90%;
  max-width: 800px;
  height: 500px;
  overflow-y: auto;
  border: 1px solid #ffb34744;
  position: relative;
}

#output {
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.4;
  text-shadow: 0 0 4px #ffb347aa;
}

.input-line {
  display: flex;
  margin-top: 10px;
}

.prompt {
  margin-right: 6px;
  color: #ffb347;
  text-shadow: 0 0 4px #ffb347aa;
}

input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffb347;
  font-family: monospace;
  font-size: 15px;
  outline: none;
  caret-color: #ffb347;
  text-shadow: 0 0 4px #ffb347aa;
}

.cmd {
  color: #ffe680;
}

