#gallery {
	height: 150px;
	position: relative;
}
#gallery figure {
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: 0;
  	animation: image-fade 30s infinite;
}
img{
	width: 100%;
	height: 100%;
}
#gallery figure:nth-of-type(2) {
	animation-delay: 10s;
	opacity: 0;
}
#gallery figure:nth-of-type(3) {
	animation-delay: 20s;
	opacity: 0;
}


@keyframes image-fade {
    0% {opacity: 0;}
    3% {opacity: 1;}
   33% {opacity: 1;}
   36% {opacity: 0;}
  100% {opacity: 0;}
}
