<style>

body{}


#Bildwechsel div{
	margin-right: 20%;
	animation: wechseln 16s infinite;
	opacity: 0;
	z-index: 0;
	position: absolute;
}

#Bildwechsel div:nth-of-type(1) {
	animation-delay: 0s;
}

#Bildwechsel div:nth-of-type(2) {
	animation-delay: 4s;
}

#Bildwechsel div:nth-of-type(3) {
	animation-delay: 8s;
}

#Bildwechsel div:nth-of-type(4) {
	position: relative;
	margin-right: 0%;
	animation-delay: 12s;
}

@keyframes wechseln {
	0% {opacity: 0; z-index: 1;}
	15% {opacity: 1;}
	25% {opacity: 1;z-index: 0;}
	35% {opacity: 0;}
	100% {opacity: 0;}
}

</style>