/* style.css */
body {
  background-color: black;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 0 0 5px #0f0;
  margin: 0;
  padding: 20px;
}

h1, h2, h3 {
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: lime;
  text-shadow: 0 0 10px #00ff00;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% {opacity: 1;}
  50% {opacity: 0.4;}
}

a {
  color: #0f0;
  text-decoration: none;
  border-bottom: 1px dotted #0f0;
}

a:hover {
  color: red;
  border-bottom: 1px solid red;
}

.blink {
  animation: blinker 1s linear infinite;
  font-weight: bold;
}

@keyframes blinker {
  50% { opacity: 0; }
}

.marquee {
  font-weight: bold;
  color: red;
  animation: marqueeAnim 10s linear infinite;
}

@keyframes marqueeAnim {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

img.pixelated {
  image-rendering: pixelated;
  width: 150px;
  display: block;
  margin: 20px auto;
}
