body {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  background-color: #000000;
  color: #ffff00;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3em;
  animation: rainbowText 5s infinite;
  text-shadow: 2px 2px #000;
}

h2 {
  font-size: 2em;
  color: #ffcc00;
  margin-top: 15px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 20px 0;
  border: 3px dotted #00ffff;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

a {
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
  background-color: #000;
  padding: 5px 10px;
  border: 2px solid #ff00ff;
  border-radius: 5px;
}

a:hover {
  background-color: #ff00ff;
  color: black;
}

form {
  margin-top: 20px;
}

input, textarea {
  font-family: 'Comic Sans MS', cursive;
  padding: 10px;
  border: 2px dashed #ff00ff;
  background-color: #111;
  color: #0f0;
}

button {
  padding: 10px 20px;
  background-color: #00ff00;
  color: black;
  font-weight: bold;
  border: 2px solid #000;
  cursor: pointer;
}

img {
  margin-top: 20px;
}

/* Blinking text fallback */
blink {
  animation: blink 1s step-start infinite;
}

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

/* Rainbow text animation */
@keyframes rainbowText {
  0% { color: red; }
  16% { color: orange; }
  33% { color: yellow; }
  50% { color: lime; }
  66% { color: cyan; }
  83% { color: magenta; }
  100% { color: red; }
}
