#slider {
    width: 800px;
    height: 800px;
    position: relative;
    background-color: #000;
}

.slide {
	display: none;
	width: 100%;
	height: 100%;
	animation-name: fade;
	animation-duration: 1.5s;
}

.slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: calc(50% - 1.5em);
	width: auto;
	padding: 1em;
	color: #fff;
	background-color: #33333333;
	font-weight: bold;
	font-size: 14pt;
	transition: 0.5s ease;
	user-select: none;
}

.next {
	right: 0;
}

.prev:hover, .next:hover {
    background-color: #333333ee;
}

.caption {
	position: absolute;
	bottom: 0;
	width: 100%;
    padding: 8pt;
	color: #f2f2f2;
	background-color: #33333388;
    font-size: 14pt;
	text-align: center;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
        opacity: .5;
	}
	to {
		opacity: 1;
	}
}