body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0f0f0f;
  margin: 0;
  font-family: Arial, sans-serif;
}

.glow-text {
  font-size: 80px;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}

.glow-text:hover {
  color: #0ff;
  text-shadow: 0 0 10px #0ff,
               0 0 20px #0ff,
               0 0 40px #0ff,
               0 0 80px #0ff;
}
