
/* Slideshow container */
.slideshow-container {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 1em;
}

.mySlides {
	display: none;
	flex-direction: column;
	align-items: center;
}

.mySlides img {
	width: 100%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	background-color: rgba(0,0,0,0.4);
}

/* Position the "next button" to the right */
.prev {
	left: 0;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}



/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Caption text */

.description {
	position: absolute;
	bottom: 0;
	left: 50px;
	padding: 10px;
	margin: 30px;
	max-width: 50%;
	font-size: 28px;
}

.description_bg {
	background: #fed91c;
	outline: #fed91c solid 10px;
	font-weight: 600;

}


/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@media all and (max-width: 800px) {
	.mySlides img {
		width: 100%;
	}

	.prev {
		left: 0;
	}

	.next {
		right: 0;
	}
}
