.lauftext {
	max-width: 100vw; /* iOS braucht das */
	white-space: nowrap;
	overflow: hidden;
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 0px;
	color: rgba(0,128,121,1);
	bottom: 54px;
	width: 100vw;
	left: 0px;
	z-index: 1000;
}

.lauftext h1 {
	font-size: 24px !important;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: rgba(0,128,121,1);
}

.lauftext h1 a:hover {
	color: rgba(220,0,0,1);
}

.lauftext span {
	display: inline-block;
	padding-left: 100%;
	animation: lauftext 18s linear infinite;
}

@keyframes lauftext {
0% {
	transform: translateX(0);
}
100% {
	transform: translateX(-100%);
}
}

@media screen and (min-width:481px) {

.lauftext {
	bottom: 30px;
}

.lauftext h1 {
	font-size: 20px;
}
	
}
