@import url('https://fonts.googleapis.com/css?family=Comfortaa');
*{
	padding: 0;
	margin: 0;
	font-family: 'Comfortaa', cursive;
}
body{
	background: #000;
}
.container{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.container span{
	display: block;
}
.text1{
	color: white;
	text-transform: uppercase;
	font-size: 60px;
	font-weight: 700;
	letter-spacing: 8px;
	margin-bottom: 5px;
	background: black;
	position: relative;
	animation: text 3s 1;
}
.text2{
	text-transform: lowercase;
	font-size: 30px;
	color: #eee;
}
.text3{
	text-transform: uppercase;
	font-size: 20px;
	color: #000FFF;
	position: relative;
	top: 5px;
	animation: ctc 4s 1;
}
@keyframes text{
	0%{
		color: black;
		margin-bottom: -40px;
	}
	30%{
		letter-spacing: 25px;
		margin-bottom: -40px;
	}
	85%{
		letter-spacing: 8px;
		margin-bottom: -40px;
	}
}
@keyframes ctc{
	0%{
		color: black;
	}
	84%{
		color: black;
	}
	85%{
		
	}
}