
body {
  background-color: black;
  color: #c3cbdc;
  font-family: 'Fira Code', monospace;
  margin: 0;
  padding: 20px;
}
#terminal {
  background-color: black;
  padding: 20px;
  max-width: 800px;
  margin: 40px 20px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
  white-space: pre-wrap;
}
.input-line {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.input-line span.prompt {
  color: #7CFC00;
  margin-right: 10px;
  font-weight: bold;
}
input {
  background: none;
  border: none;
  outline: none;
  color: #c3cbdc;
  font: inherit;
  width: 100%;
}
a {
  color: #00bcd4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.command-line {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.prompt {
  color: #7CFC00;
  margin-right: 10px;
  font-weight: bold;
}
.command-text {
  color: #c3cbdc;
    white-space: pre-wrap;
}
#output div {
line-height: 1.6;
  }
::selection {
  background: #00bcd4;
  color: #0f111a;
}
.typing {
  display: inline;
  white-space: pre-wrap;
}