/* styles.css */
body {
  background-color: #000000;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
  margin: 0;
  word-wrap: break-word;
}

header, section, footer {
  max-width: 800px;
  margin: auto;
}

header h1 {
  color: #00FF00;
  font-size: 24px;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 5px;
}

nav a {
  color: #00FF00;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}


footer {
  border-top: 1px solid #00FF00;
  padding-top: 10px;
  margin-top: 40px;
  font-size: 14px;
}

a {
  color: #00FF00;
}

a:visited {
  coolor: #00CC00;
}

body::after {
  content: "_";
  animation: blink 1s infinite step-start;
  margin-left: 5px;
}

@keyframes blink {
  50% { opacity: 0; }
}
.terminal-header {
      background-color: #1e1e1e;
      color: #00ff5f;
      font-family: 'Courier New', monospace;
      font-size: 0.85rem;
      line-height: 1.4;
      padding: 1em;
      margin-bottom: 2em;
      border: 1px solid #333;
      border-radius: 5px;
      white-space: pre-wrap; /* enables wrapping */
      word-break: break-word;
      overflow-x: auto;
      box-shadow: 0 0 10px rgba(0, 255, 90, 0.1);
}
terminal-header p {
  word-wrap: break-word;
}
div {
  word-wrap: break-word;
}
.terminal-body {
  background-color: #1e1e1e;
  color: #d0ffd0;
  padding: 1em;
  border-radius: 6px;
  border: 1px solid #333;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  word-wrap: break-word;
}
