
.container2{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.container2 span{
	display: block;
}
.text1{
	color: white;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 8px;
	margin-bottom: 20px;
	background: #059EDF;
	position: relative;
	animation: text 9s 1;
}

@keyframes text{
	0%{
		color: black;
		margin-bottom: -40px;
	}
	30%{
		letter-spacing: 25px;
		margin-bottom: -40px;
		}
	85%{
		letter-spacing: 8px;
		margin-bottom: -40px;
	}
}
