body {
  background: url("https://z00mbie.neocities.org/s-l1200-2.jpg");
  font-family: "Itim", Verdana;
  color: green;
  cursor: url("images/cursor.cur"), auto;
}

.window {
  background: black;
  border: 4px ridge Green;
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

h1 {
  color: green;
}

nav a {
  color: green;
  font-weight: bold;
  text-decoration: none;
}

.blink {
  animation: blink 3s infinite;
  color: red;
}

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

.gallery img {
  border: 2px dashed green;
  margin: 10px;
}

.playlist button {
  background: black;
  color: lime;
  border: 2px solid white;
  margin: 5px;
}

.enter-btn {
  display: inline-block;
  padding: 10px;
  border: 2px solid white;
  color: lime;
  text-decoration: none;
}

/* FLOATING STICKERS */
.floating {
  position: fixed;
  top: 10px;
  right: 10px;
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  50% { transform: translateY(20px); }
}

/* SPARKLES */
.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: solid green ;
  pointer-events: none;
  
}
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  background: url("images/scanlines.png");
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.window {
  box-shadow: 0 0 20px cyan;
}

audio {
  width: 100%;
  background: black;
  border: 3px inset lime;
  margin-top: 10px;
}

.window::before {
  content: "";
  display: block;
  background: url("images/winamp.png");
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
