BODY {
    background-image: url('Background.jpg');
    font-size: 2em;
    font-family: "Comic Sans MS", cursive, sans-serif;
    text-align: center;
}

#box {
    width: 1000px;
    background-color: rgb(0, 94, 255);
    padding: 20px;
    position: relative;
    margin-left: auto;
    margin-right: auto
}

/* H1 {
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    2px 2px 0 #000,
    4px 4px 0 #fff,
    6px 6px 10px rgba(0,0,0,0.5),
    0 0 20px #ff00ff,
    0 0 40px #00ffff;
  transform: perspective(500px) rotateX(15deg);
  font-weight: bold;
} */

h1 {
  font-size: 4rem;
  font-weight: 900;
  background: 
    linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, hotpink, lime, gold, cyan, magenta),
    radial-gradient(circle, fuchsia, lime, cyan, yellow, orange),
    conic-gradient(from 0deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: 
    3px 3px 0 #000,
    0 0 30px #ff00ff,
    0 0 50px #00ff00,
    0 0 70px #ffff00,
    2px 0 #ff1493,
    4px 0 #00ff7f,
    6px 0 #ffd700;
  animation: rainbowShift 3s linear infinite, glowPulse 2s ease-in-out infinite alternate;
}

@keyframes rainbowShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glowPulse {
  0% { filter: hue-rotate(0deg) drop-shadow(0 0 20px #ff00ff); }
  100% { filter: hue-rotate(360deg) drop-shadow(0 0 40px #00ffff); }
}

TD A {
    font-size: 0.5em;
    color: yellow !important;
    font-weight: bold;
}

A:hover {
    color: magenta !important;
}

#box A {
    color: white;
}

UL {
    text-align: left;
}