.scale {
	transition: all 400ms linear 0s;
	z-index: 0;
}

.scale:hover {
	transform: scale(1.8);
	z-index: 5;
}

.auto-scale {
	z-index: 5;
	animation-duration: 1.5s;
	animation-delay: 0.2s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	animation-name: autoscale;
}

.auto-scale-text {
	z-index: 5;
	animation-duration: 1.7s;
	animation-delay: 0.3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	animation-name: autoscale-text;
}

@keyframes autoscale {
    0% { opacity:0; transform: scale(0.1); }
	100% { opacity:1; transform: scale(1.0); }
}

@keyframes autoscale-text {
    0% { opacity:0; font-size: 2%; }
	100% { opacity:1; font-size: 300%;; }
	
}


}

.Ende-Handy__________________ { }


@media screen and (min-width:481px) {

.scale {
	transition: all 400ms linear 0s;
	z-index: 0;
}

.scale:hover {
	transform: scale(1.2);
	z-index: 5;
	padding: 0px;
}


}