
	
div.oben {
position: fixed;
    right: 0px;
    left: 0px;
    top: 80px;
height:7px;
z-index: 11;
text-shadow: 1px 1px #000000;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 5s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
	animation: Gradient 5s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}



div.titel {color: white; text-shadow: black 0.3em 0.1em 0.5em;
transform: rotate(-5deg);
background: rgba(252, 124, 32, 0.8);

 position: fixed;
 width:250px;
 padding:5px;
 font-size: 30px;
margin-top: 90px;

    -webkit-animation: mymove 1s;  /* Safari 4.0 - 8.0 */
    animation: mymove 1s ;
 -webkit-animation-iteration-count: 1,
animation-iteration-count: 1;
}


/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
    from {left: -200px;}
    to {left: 0px;}
}

@keyframes mymove {
    from {left: -200px;}
    to {left: 0px;}
}
