body{
	margin: 0;
	padding: 0;

}
section{
	height: 100vh;
	background: #000;
}
video{
	object-fit: cover;
}
h2{
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: #e91010;
	font-size: 5em;
	/* font-family: Arial black; */
	font-family: 'Bebas Neue'; 
	letter-spacing: 0.2em;
}
h2 span{
	display: inline-block;
	animation: animate 1s linear forwards;
}

@keyframes animate
{
	0%
	{
		opacity: 0;
		transform: rotateY(90deg);
		filter: blur(10px);
	}
	100%
	{
		opacity: 1;
		transform: rotateY(0deg);
		filter: blur(0px);

	}
}
h2 span:nth-child(1)
{
	animation-delay: 1s;
}
h2 span:nth-child(2)
{
	animation-delay: 2s;
}
h2 span:nth-child(3)
{
	animation-delay: 2.5s;
}
h2 span:nth-child(4)
{
	animation-delay: 3s;
}
h2 span:nth-child(5)
{
	animation-delay: 3.5s;
}
h2 span:nth-child(6)
{
	animation-delay: 3.75s;
}
h2 span:nth-child(7)
{
	animation-delay: 4s;
}
h2 span:nth-child(8)
{
	animation-delay: 4.5s;
}
h2 span:nth-child(9)
{
	animation-delay: 5s;
}
h2 span:nth-child(10)
{
	animation-delay: 5.5s;
}
h2 span:nth-child(11)
{
	animation-delay: 6s;
}


