* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.slideshow-container {
	position: relative;
	height: 100vh;
}

.mySlides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.mySlides img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
	z-index: 2;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}

.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 20px;
	font-size: 24px;
}

.fade {
	animation-name: fade;
	animation-duration: 1s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}
