/* Base futuristic terminal styling */
body {
  background-color: #1b1b1b;
  color: #00b0ff;
  font-family: 'Courier New', monospace;
  padding: 2em;
  margin: 0;
}

a {
  color: #00ffee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.terminal {
  max-width: 900px;
  margin: auto;
}

/* Typewriter effect — apply only to page content, not nav */
.typewriter h1,
.typewriter p,
.typewriter ul {
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
  white-space: pre-line;
  overflow: hidden;
  border-right: 0.15em solid #00ffee;
}

ul {
  list-style-type: '💻 ';
  padding-left: 1.5em;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #00ffee;
  }
}

/* NAVIGATION MENU — keep functional */
nav {
  text-align: center;
  margin-bottom: 2em;
}

nav a {
  margin: 0 1em;
  font-weight: bold;
  font-size: 1.1em;
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid #00ffee;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #00ffee;
  color: #1b1b1b;
}

/* Main heading */
main h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

section {
  margin-top: 2em;
}

/* Make images hacker-cool */
img {
  border: 3px solid #00ffee;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  margin-top: 3em;
  color: #888;
  border-top: 1px solid #444;
  padding-top: 1em;
}
