html, body {
  font-size: 18px;
  font-family: monospace;
  background: black;
  color: lime;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#console {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#terminal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
  padding: 1rem;
  white-space: pre-wrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#terminal::-webkit-scrollbar {
  display: none;
}

#input-line {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-top: 1px solid #222;
  background: black;
  flex-shrink: 0;
}

#cmd {
  flex: 1;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 16px;
  font-family: monospace;
  outline: none;
  caret-color: lime;
}

.prompt {
  margin-right: 0.5rem;
}