body {
  background-color: #000;
  color: #00ff66;
  font-family: 'Courier New', Courier, monospace;
  padding: 20px;
  margin: 0;
}

.terminal {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
  text-shadow: 0 0 5px #00ff66, 0 0 10px #00ff66;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.blinker {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

a {
  color: #00ff00; /* neon green */
  text-decoration: none; /* remove underline */
}

a:hover {
  text-decoration: underline; /* optional: underline on hover */
  color: #00ff00;
}

a:visited {
  color: #00ff00;
}

body {
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0%   { opacity: 1; }
  98%  { opacity: 0.97; }
  100% { opacity: 1; }
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 1px,
    rgba(0, 255, 102, 0.05) 2px,
    rgba(0, 0, 0, 0) 3px
  );
  pointer-events: none;
  z-index: 9999;
}


.tech-stack {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.tech-stack li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}


.tech-stack img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-right: 10px;
}


