/* Basic CSS Reset and Typography */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  line-height: 1.5;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

/* Paragraphs and Lists */
p {
  margin: 0 0 1em 0;
}

ul, ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
  color: #fff;
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: bold;
}

a:hover {
  color: #00ff00 !important; /* green on hover */
  text-decoration: underline;
}

a:visited {
  color: #ffff00 !important; /* yellow when visited */
}

/* Navigation */
nav {
  background: #111;
  padding: 1em 2em;
  display: flex;
  gap: 1em;
}

nav a {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.04em;
}

nav a:hover {
  color: #00ff00 !important;
}

nav a:visited {
  color: #ffff00 !important;
}

/* Main Content */
main {
  max-width: 700px;
  margin: 2em auto;
  background: #111;
  border-radius: 12px;
  padding: 2em 2em 1em 2em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

/* Buttons */
button, .button, a.button {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 0.7em 1.6em;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  margin-top: 1em;
  transition: background 0.15s, color 0.15s;
  border: 1px solid #fff;
  cursor: pointer;
}

button:hover, .button:hover, a.button:hover {
  background: #fff;
  color: #000;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Example class for project list if needed */
#project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-item {
  padding: 1em 0 1.5em 0;
  border-bottom: 1px solid #444;
}

.project-item:last-child {
  border-bottom: none;
}

.project-number {
  font-weight: bold;
  color: #fff;
  font-size: 1.1em;
  margin: 0;
}
