body, html {
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: fade 5s linear infinite;
}

@keyframes fade {
	0%, 100% {
		opacity: 0;
		z-index: 1;
	}
	25%, 75% {
		opacity: 1;
		z-index: 2;
	}
}
