body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 100% ;
	margin:0; /* If you want no margin */
	padding:0; /*if your want to padding */  
	  overflow-x: hidden; /* Hide horizontal scrollbar */
}

:root {
  --scale_speed: all 0.8s linear;
  --scale_factor_light: 1.02;
  --scale_factor: 1.05;
}

@font-face {
  font-family: Bahnschrift;
  src: url(fonts/BAHNSCHRIFT.ttf);
}

@font-face {
  font-family: Fira Sans;
  src: url(fonts/fira-sans-v15-latin-regular.woff);
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 900px) 
and (max-device-width : 6000px) {


.left_area {
  grid-column: 1 / span 2;
  grid-row:    1;
  background-image:url('../img/gardasee.jpg');
  	background-size: cover;
  background-color:	#ffffff;
}

.content_area {
		z-index: 2;
  grid-column: 3 / span 2;
  grid-row:    1;
    background-image:url('../img/bg.jpg');
  	background-size: cover;
  background-color:	#ffffff;
  border-bottom-right-radius: 4px;
}

.right_area {
  grid-column: 5 / span2;
  grid-row:    1;
  background-image:url('../img/zollhaus.jpg');
  	background-size: cover;
  background-color:	#ffffff;
}
}


@media only screen 
and (min-device-width : 300px) 
and (max-device-width : 599px) {


.content_area {
		z-index: 2;
  grid-column: 1 / span 6;
  grid-row:    1;
    background-image:url('../img/bg.jpg');
  	background-size: cover;
  background-color:	#ffffff;
  border-bottom-right-radius: 4px;
}
}

.nago_content {
  padding:15px;
  text-align: center;
  padding-bottom: 40px;
  }
  
  .postcard {
  width: 100%;
  }
  
  .nago_content_welcome {
  padding:15px;
  text-align: center;
  font-family: "Fira Sans", Avenir;
  font-size:	25px;
  color: #666666;
  font-weight: bold;
}
  .nago_content_text {
  padding:10px;
  text-align: center;
  font-family: "Fira Sans", Avenir;
  font-size:	16px;
  color: #666666;
}

.link_impressum{
  padding:15px;
  text-align: center;
  font-family: "Fira Sans", Avenir;
  font-size:	13px;
  color: #666666;
  text-decoration: none;
  font-weight:bold;
}


  .nago_content_flyer {
  padding:5px;
  	-webkit-transition: var(--scale_speed);
	-moz-transition: var(--scale_speed);
	-ms-transition: var(--scale_speed);
	-o-transition: var(--scale_speed);
	transition: var(--scale_speed);
}
 .nago_content_flyer_text {
  text-align: center;
  font-family: "Fira Sans", Avenir;
  font-size:	13px;
  color: #666666;
 } 

.nago_content_flyer:hover {
	-webkit-transform: scale(var(--scale_factor));
	-moz-transform: scale(var(--scale_factor));
	-ms-transform: scale(var(--scale_factor));
	-o-transform: scale(var(--scale_factor));
	transform: scale(var(--scale_factor));
	filter: brightness(1.05);
}


  .flyer {
  width: 200px;
  }
  
  .nago_content_impressum {
  padding:5px;
  text-align: bottom;
  font-family: "Fira Sans", Avenir;
  font-size:	12px;
  color: #666666;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 100%;
  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;
  user-select: none;
}

/* Position the "next button" to the right */
.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 */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-family: "Fira Sans", Avenir;
  font-size:	15px;
  color: #eeeeee;
  font-weight: bold;
}

/* Number text (1/3 etc) */
.numbertext {
  display: none;
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3.5s;
}

@keyframes fade {
  from {opacity: .8}
  to {opacity: 1}
}