

	.animate-text{
/*		position: absolute;*/
/*		transform: translate(-10%,-10%);*/
/*font-size: 70px;
color: white;*/
text-transform: uppercase;
letter-spacing: 3px;
	}
	.animate-text span{
		letter-spacing: 3px;
		display: inline-block;
		font-weight: bolder;
		animation: mover 6s linear ;
	}
	@keyframes mover
	{
		0%{
			text-shadow: 0 0 30px rgba(0,0,0,0);
		}
		50%{
			text-shadow: 0 0 30px rgba(0,0,0,0.30);
			transform: translateY(30px);
		}
		100%{
			text-shadow: 0 0 30px rgba(0,0,0,0);
		}
	}
		.animate-text span:nth-child(1)
		{
			animation-delay: 0.3s;
		}
		.animate-text span:nth-child(2)
		{
			animation-delay: 0.6s;
		}
		.animate-text span:nth-child(3)
		{
			animation-delay: 0.9s;
		}
		.animate-text span:nth-child(4)
		{
			animation-delay: 1.2s;
		}
		.animate-text span:nth-child(5)
		{
			animation-delay: 1.5s;
		}
		.animate-text span:nth-child(6)
		{
			animation-delay: 1.8s;
		}
		.animate-text span:nth-child(7)
		{
			animation-delay: 2.1s;
		}
		.animate-text span:nth-child(8)
		{
			animation-delay: 2.4s;
		}
	

