body {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		background-color: black;
		font-family: Arial, sans-serif;
}

.glowy-text {
		font-size: 3rem;
		color: #fff;
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
		animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
		0% {
				text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
		}
		50% {
				text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff, 0 0 80px #fff;
		}
		100% {
				text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
		}
}