* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #050505;
  color: #e6e6e6;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.2;
}

#terminal {
  width: min-content;
  max-width: 100vw;
  min-height: 100vh;
  padding: 18px;
  overflow-x: auto;
}

#screen {
  margin: 0;
  white-space: pre;
  font: inherit;
  color: inherit;
}

#prompt-form {
  display: flex;
  align-items: baseline;
  width: 76ch;
  margin: 0;
  white-space: pre;
}

#prompt-prefix,
#prompt-suffix,
#prompt-input {
  font: inherit;
  color: inherit;
}

#prompt-input {
  flex: 1;
  min-width: 8ch;
  border: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  caret-color: #e6e6e6;
}

#prompt-form.hidden {
  display: none;
}

@media (max-width: 720px) {
  body {
    font-size: 12px;
  }

  #terminal {
    padding: 10px;
  }
}
