body {
	background-color: #000000;
	color:#feda4a;
	font-family: san-sarif;
	font-size: 500%;
	font-weight: 600;
	letter-spacing: 6px;
	line-height: 150%;
	text-align: justify;
	perspective: 400px;
	margin-top:400px;
	overflow:hidden;
	height:800px;
}

#title {
	text-align: center;
	font-size: 90%;
}

h1 {
	text-transform: uppercase;
}

#crawl {
	position: relative;
	animation: scroll 40s linear;
	top: -1000px;
}

@keyframes scroll {
	0% {
		top:0px;
		transform: rotateX(20deg) translateZ(0px);
		color: #feda4a;
		}
	75% { color: #feda4a; }
	100% {
		top:-6000px;
		transform: rotateX(25deg) translateZ(-2500px);
		color: #000000;
	
	}



