@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); /* Pixel/retro font */

body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Press Start 2P', monospace;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-text h1 {
  font-size: 2em;
  text-align: center;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red; }
  25% { text-shadow: -2px 0 cyan; }
  50% { text-shadow: 2px 2px lime; }
  75% { text-shadow: -2px -2px magenta; }
  100% { text-shadow: 2px 0 red; }
}
