#gallery figure {
	animation: wechseln 40s ease-in infinite;
}
@keyframes wechseln {
	0% { opacity: 0; background-size:100% auto; }
	12% { opacity: 1; }
	24% { opacity: 1; }
	36% { opacity: 0; background-size:120% auto;}
	100% { opacity: 0; }
}
#gallery figure:nth-of-type(2) {
	animation-delay: 8s;
	opacity: 0;
}
#gallery figure:nth-of-type(3) {
	animation-delay: 16s;
	opacity: 0;
}
#gallery figure:nth-of-type(4) {
	animation-delay: 24s;
	opacity: 0;
}
#gallery figure:nth-of-type(5) {
	animation-delay: 32s;
	opacity: 0;
}
