 
/* Definindo o estilo básico da página */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #222;
  font-family: Arial, sans-serif;
}

/* Estilo do texto */
.efeito-texto {
  font-size: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  position: relative;
  animation: glow 1.5s infinite alternate;
}

/* Definindo o efeito de brilho com animação */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff;
  }
  100% {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
  }
}
