@import url('https://fonts.googleapis.com/css?family=Bad+Script');
.body
{
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: center;
	height: 50vh;
	background: #000;
	font-family: 'Bad Script', cursive;
}
.body h3
{
	margin: 0px;
	padding-top: 70px;
	color: #111;
	font-size: 5em;
	
}
.body h3 span
{
	display: table-cell;
	padding: 0;
	margin: 0;
	animation: animate 2s linear infinite;
}
.body h3 span:nth-child(1)
{
	animation-delay: 0s;
}
.body h3 span:nth-child(2)
{
	animation-delay: 0.25s;
}.body h3 span:nth-child(3)
{
	animation-delay: 0.5s;
}
.body h3 span:nth-child(4)
{
	animation-delay: 0.75s;
}
.body h3 span:nth-child(5)
{
	animation-delay: 1s;
}
.body h3 span:nth-child(6)
{
	animation-delay: 1.25s;
}
.body h3 span:nth-child(7)
{
	animation-delay: 1.5s;
}
@keyframes animate
{
	0%,100%
	{
		color: #fff;
		filter: blur(2px);
		text-shadow: 0 0 10px #00b3ff,
					 0 0 20px #00b3ff,
					 0 0 40px #00b3ff,
					 0 0 80px #00b3ff,
					 0 0 120px #00b3ff,
					 0 0 200px #00b3ff,
					 0 0 400px #00b3ff;
	}
	5%,95%
	{
		color: #111;
		filter: blur(0px);
		text-shadow: none;
	}
}
