.mySlides {display: none;}

/* Slideshow container */

.slideshow-container {
    width: 100%;
	position: relative;
	padding: 0;
	}
.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
		border: 10px solid #fff;
}
/* Transparent - Bild text */
.text {
	position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    color: #f1f1f1;
	font-size: 1.25em;
    width: 100%;
    padding: 20px;
	text-align: center;
}
/* Fading animation */
.fade-slides {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 40em) {
  .text {font-size: 0.6875em}
}




