.album {
	position: relative;
	width: 500px;
	max-width: 100%;
	height: 400px;
}

.image {
	position: absolute;
	width: 100%;
	opacity: 0;
	animation: change-img-anim 60s infinite;
}

.image:nth-of-type(1) {
	animation-delay: 0s;
}
.image:nth-of-type(2) {
	animation-delay: 4s;
}
.image:nth-of-type(3) {
	animation-delay: 8s;
}
.image:nth-of-type(4) {
	animation-delay: 12s;
}
.image:nth-of-type(5) {
	animation-delay: 16s;
}
.image:nth-of-type(6) {
	animation-delay: 20s;
}
.image:nth-of-type(7) {
	animation-delay: 24s;
}
.image:nth-of-type(8) {
	animation-delay: 28s;
}
.image:nth-of-type(9) {
	animation-delay: 32s;
}
.image:nth-of-type(10) {
	animation-delay: 36s;
}
.image:nth-of-type(11) {
	animation-delay: 40s;
}
.image:nth-of-type(12) {
	animation-delay: 44s;
}
.image:nth-of-type(13) {
	animation-delay: 48s;
}
.image:nth-of-type(14) {
	animation-delay: 52s;
}
.image:nth-of-type(15) {
	animation-delay: 56s;
}
@keyframes change-img-anim {
	0%{ opacity: 0;}
	5%{ opacity: 1;}
      15%{ opacity: 1;}
	30%{ opacity: 0;}
	100%{ opacity: 0;}
}