/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* CRT-style body */
body {
  background-color: #000;
  color: #00ff99;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 20px;
  text-shadow: 0 0 2px #00ff99, 0 0 5px #00ff99;
}

/* Glitchy header */
h1 {
  font-size: 3em;
  letter-spacing: 2px;
  animation: flicker 1.5s infinite;
  text-shadow: 0 0 5px red, 0 0 10px blue;
}

/* Flicker animation */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; transform: translateX(-1px); }
  75% { opacity: 0.6; transform: translateX(1px); }
}

/* Links */
a {
  color: #ff00ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* List styling */
ul {
  list-style-type: square;
  padding-left: 0;
}
li {
  margin: 10px 0;
}

/* Image styling */
img {
  width: 300px;
  border: 2px solid #00ff99;
  box-shadow: 0 0 10px #00ff99;
}

/* VHS static overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('vhs-static.gif') repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 999;
}