@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  background: black;
  color: white;
  font-family: "VT323", monospace;
}

.terminal {
  padding: 20px;
  font-size: 32px;
  line-height: 1.3;
}

#output {
  white-space: pre-wrap;
  margin-bottom: 20px;
}

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

input {
  flex: 1;
  background: black;
  border: 1px solid white;
  color: white;
  font-size: 32px;
  font-family: "VT323", monospace;
  outline: none;
}