* {
  box-sizing: border-box;
}

body {
  font-family: "Lucida Sans", sans-serif;
  font-size: 17px;
}
.mySlides {display: none;}

.grid-container {
  display: grid;
  grid-template-areas:
    'header'
    'menu'
    'main'
    'facts'
    'foot1'
    'foot2'
    'foot3';
  background-color: white;
  gap: 5px;  
}

.header {
  grid-area: header;
  background-color: yellow;
  text-align: center;
  color: #ffffff;
}

.header > h1 {
  font-size: 40px;
}

.menu {
  grid-area: menu;
  display: block;
  width: 100%;
  border: none;
  text-align: center;
  }
  
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: block;
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.menu li:hover {
  background-color: #0099cc;
}
  
.content {
  grid-area: main;
}

.content > h1 {
  font-size: 30px;
  margin-bottom: 7px;
}

.content > p {
  margin-bottom: 7px;
}

.facts {
  grid-area: facts;
  padding: 10px;
  min-height: 300px;
  min-width: 300px;
}

.facts > h2 {
  font-size: 20px;
}
img {vertical-align: middle;}

img {
max-width: 100%;
max-height: auto;
margin: auto;
display: block;
}


.facts li {
  margin-bottom: 5px;
} 

.footer1 {
  grid-area: foot1;
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
}

.footer2 {
  grid-area: foot2;
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
}

.footer3 {
  grid-area: foot3;
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
}


@media (min-width: 600px) {
  .header {grid-area: 1 / span 6;}
  .menu {grid-area: 2 / span 1;}
  .content {grid-area: 2 / span 5;}
  .facts {grid-area: 3 / span 6;}
  .footer1 {grid-area: 4 / span 1;}
  .footer2 {grid-area: 4 / span 5;}
  .footer3 {grid-area: 5 / span 6;}


}

@media (min-width: 768px) {
  .header {grid-area: 1 / span 6;}
  .menu {grid-area: 2 / span 1;}
  .content {grid-area: 2 / span 4;}
  .facts {grid-area: 2 / span 1;}
  .footer1 {grid-area: 3 / span 1;}
  .footer2 {grid-area: 3 / span 3;}
  .footer3 {grid-area: 3 / span 2;}
}

/* New Stuff */

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
   .text {font-size: 11px} 
}
