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

.container {
  text-align: center;
}

#name {
  font-size: 3rem;
  letter-spacing: 0.2em;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #ccc;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #aaa;
  }
}
