.slideshow {
	height: 315px;
	width: 315px;
	position: relative;
}

.slideshow img { /* this stacks the photos on top of each other */
	position: absolute;
	top: 0;
	left: 0;
}

.slideshow:hover img { /* pauses the animation when hovering */
	animation-play-state: paused;
}

@keyframes crossfade {
	0% {opacity: 1;}
	16% {opacity: 1;}
	20% {opacity: 0;}
	96% {opacity: 0;}
	100% {opacity: 1;}
}

.slideshow img:nth-child(1) {
	animation: crossfade 25s 20s infinite;
}

.slideshow img:nth-child(2) {
	animation: crossfade 25s 15s infinite;
}

.slideshow img:nth-child(3) {
	animation: crossfade 25s 10s infinite;
}

.slideshow img:nth-child(4) {
	animation: crossfade 25s 5s infinite;
}

#img5 {
	animation-name: crossfade;
	animation-duration: 25s;
	animation-iteration-count: infinite;
	animation-delay: 0;
}