/* Terminal styling */
body {
  margin: 0;
  padding: 20px;
  background-color: #000;         /* Classic black background */
  color: #00ff00;                 /* Bright green text */
  font-family: 'Source Code Pro', monospace;
  font-size: 1.2em;
  line-height: 1.6;
}

/* Each line in the terminal */
.line {
  margin: 0;
  white-space: pre-wrap;
}

/* Additional spacing before the prompt */
.prompt {
  margin-top: 20px;
}

/* Blinking cursor effect */
.cursor {
  display: inline-block;
  width: 10px;
  height: 1em;
  background-color: #00ff00;
  margin-left: 2px;
  animation: blink 1s step-start infinite;
}

/* Keyframes for cursor blink */
@keyframes blink {
  50% { background-color: transparent; }
}

/* Styling for comments in command output */
.comment {
  color: #00ff00;
  opacity: 0.7;
}

/* Link styling to match terminal aesthetic */
a {
  color: #00ff00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

