body {
  background-color: black;
  color: #00ff00;
  font-family: monospace;
}

.terminal {
  padding: 20px;
}

#terminal {
  height: 400px;
  overflow-y: auto;
}

p {
  margin: 5px 0;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #00ff00;
  margin-left: 5px;

  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

input {
  background: transparent;   /* removes white box */
  border: none;              /* removes border */
  outline: none;             /* removes blue glow on click */
  color: #00ff00;            /* terminal green */
  font-family: monospace;
  font-size: 16px;
  width: 90%;                /* stretches it out */
}

a {
  color: #27F5E7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.error {
  color: #ff3b3b;  /* red terminal error */
}

.entry {
  color: #ffffff; /* white, more differable text */
}
  
.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  color: #00ff00;
  margin-right: 5px;
  font-family: monospace;
}