body {
  margin: 0;
  padding: 20px;
  font-family: 'Courier New', Courier, monospace;
  background-color: #1a1a1a;
  color: #f5d76e;
}

#cursor {
  z-index: 9999;
  position: fixed;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 1.7px dashed #f5d76e;
  border-radius: 50%;
  pointer-events: none;
  transition: 0.05s;
}

#intro {
  margin-bottom: 20px;
  line-height: 1.5em;
}

#intro strong {
  display: block;
  font-size: 1.5em;
  margin-top: 5px;
}

#intro small {
  color: #d4be98;
}

#terminal {
  max-height: 92vh;
  overflow-y: auto;
}

#commandDisplay {
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#commandLine {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

#commandLine input[type="text"] {
  flex: 1;
  margin-left: 5px;
  font-family: 'Courier New', Courier, monospace;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: transparent;
  color: #f5d76e;
}

#command {
  color: #f5d76e;
  margin-right: 5px;
  text-shadow: 0 0 5px #f5d76e;
}

.output {
  margin-left: 2ch;
  white-space: pre-wrap;
}

#clock {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #d4be98;
}
