<!-- styles.css -->
html, body {
  height: 100%;
  background-color: #1a1a1d;
}

body.terminal {
  background-color: #1a1a1d;
  color: #eaeaea;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #2b2b30;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

header h1, nav a {
  color: #d47abf; /* muted pink */
}

nav {
  margin-top: 1rem;
}

nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: #8ab0f4; /* muted blue */
}

nav a:hover {
  color: #e08ec6; /* brighter pink */
}

.terminal-output {
  background-color: #2f2f35;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 2rem;
  color: #eaeaea;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.blog-links li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.blog-links a {
  color: #f3b1ff; /* bright muted purple-pink */
  text-decoration: none;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
}

.blog-links a:hover {
  text-decoration: underline;
  color: #ffc6ff; /* lighter pink */
}

.cursor {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #aaa;
}

