body {
	background-image: url(str.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	
	background-color: #000000;
	color: #feda4a;
	font-family: sans-serif;
	font-size: 500%;
	font-weight: 600%;
	letter-spacing: 6px;
	line-height: 150%;
	text-align: justify;
	perspective: 400px;
	margin-top: 400px;
	overflow: hidden;
	height: 800px;
	height: 800px;
}
h1 {
	text-transform: uppercase;
}

#title {
	text-align: center;

	
	font-size: 90%;
}

#crawl { 
	position: relative;
	top: -10000px;
	animation: scroll 100s linear;
}
@keyframes scroll {
	0% {	
		top: 0px;
	transform: rotateX(20deg) translateZ(0);
		color: #feda4a;
	}
  80% { 
	 color: #feda4a; }
		
	100% { 
	color: #000000;
	top: -6000px; 
	transform: rotateX(25deg) translateZ(-2500px);
	}
}