/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* Background Stars */
/* Background Stars */
.stars {
  background: url('assets/bg.gif') repeat;
  background-size: cover;      /* makes sure it covers the whole screen */
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;                /* forces div to take full viewport height */
  z-index: -1;
}

/* Header */
.header {
  text-align: center;
  padding: 1rem;
  background: #111;
  border-bottom: 2px solid #ff00ff;
}
.header h1 {
  color: #ffccff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}

/* Marquee */
.marquee {
  font-size: 14px;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

/* Navigation */
.nav {
  text-align: center;
  padding: 0.5rem;
  background: #222;
}
.nav a {
  color: #0ff;
  text-decoration: none;
  margin: 0 10px;
}
.nav a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

/* Content */
.content {
  padding: 2rem;
  text-align: center;
}
.content h2, .content h3 {
  color: #ff66ff;
}
.glitch {
  color: #0ff;
  animation: glitch 1s infinite;
}
@keyframes glitch {
  0% { text-shadow: 2px 0 red, -2px 0 blue; }
  50% { text-shadow: -2px 0 lime, 2px 0 magenta; }
  100% { text-shadow: 2px 0 blue, -2px 0 red; }
}

.gif {
  max-width: 300px;
  margin: 1rem;
}

.blinkies img {
  margin: 0.3rem;
  image-rendering: pixelated;
}

/* Links page */
.link-list {
  list-style: none;
  padding: 0;
}
.link-list li {
  margin: 1rem 0;
}
.link-list a {
  color: #ff0;
  text-decoration: none;
}
.link-list a:hover {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  border-top: 2px solid #ff00ff;
}
