body
{
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80vh;
	width: 100%;
	height: 100%;
}
body div{
	text-align: center;
	align-items: center;
}
.loader
{
	position: relative;
	display: flex;
	text-align: center;
}
.loader span
{
	color: #fff;
	margin: 0 15px;
	font-size: 3em;
	font-weight: bold;
	animation: animate 2.4s linear infinite;
	font-family: sans-serif;
	line-height: 2;
}
.loader span:nth-child(1)
{
	animation-delay: 0s;
}
.loader span:nth-child(2)
{
	animation-delay: 0.2s;
}
.loader span:nth-child(3)
{
	animation-delay: 0.4s;
}
.loader span:nth-child(4)
{
	animation-delay: 0.6s;
}
.loader span:nth-child(5)
{
	animation-delay: 0.8s;
}
.loader span:nth-child(6)
{
	animation-delay: 1s;
}
.loader span:nth-child(7)
{
	animation-delay: 1.2s;
}
.loader span:nth-child(8)
{
	animation-delay: 1.4s;
}
.loader span:nth-child(9)
{
	animation-delay: 1.6s;
}
.loader span:nth-child(10)
{
	animation-delay: 1.8s;
}
.loader span:nth-child(11)
{
	animation-delay: 2s;
}
@keyframes animate
{
	0%
	{
		text-shadow: 0 0 10px rgba(0,0,0,0);
		transform: scale(1);
	}
	40%
	{
		text-shadow: 0 10px 20px rgba(0,0,0,0.2);
		transform: scale(1.4);
	}
	80%,100%
	{
		text-shadow: 0 0 10px rgba(0,0,0,0);
		transform: scale(1);
	}
}