body {
  background-color: black;
  color: #00ff00;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

#terminal {
  padding: 1rem;
  box-sizing: border-box;
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  white-space: pre-wrap;
}

input {
  background-color: black;
  color: #00ff00;
  font-family: 'Courier New', Courier, monospace;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
}

input::selection {
  background: #008000;
  color: #ffffff;
}