.logo-redirectOverlay.backgroundImage{
	background-image: url(/HISinOne/images/logos/TH_Mannheim_Favicon.svg);background-color:white;
	animation-duration: 4s;
    animation-name: rotate; /* Nutze @keyframes rotate aus index.html*/
    animation-iteration-count: infinite;/* Wiederhohlt sich unendlich oft*/
    animation-direction: linear; /* Linear ablaufende Animation*/		
}

/*Übernommen aus ROOT/index.html*/	
@keyframes rotate { 
	from {transform:rotate(0deg);}
	to {  transform:rotate(360deg);}
}

text {
	color:blue;
	font-size: 21px;
}	