/* Animation */
		span {	
			text-align: center; 
			-webkit-animation: textwelle 5s; 
			animation: textwelle 5s; 
			font-size: 200%;
			color: black;
		}
		
		@keyframes textwelle {	
			0% 	{ font-size: 0%; opacity: 1; }								
				100% { font-size: 200%;	opacity: 1;}
		}