body{background-color: aliceblue;}
header{font-family: monospace; font-size: 5vh; color: black; text-align: center;}
h2{font-family: monospace;font-size: 3vh;color: black;text-align: center;}
a{font-family: monospace;font-size: 1.5vh; color: black;text-align: center; text-decoration: underline;}
p{font-family: monospace;font-size: 1.5vh; color: black;text-align: center;}
/*
header 50px
h2 30 px
a, p 16px
*/

@media only screen and (max-width: 1000px) {
  /* For mobile phones: */
  body {
    background-color: pink;
  }
  header, h2, a, p {
    color: black;
    font-family: 'Courier New', Courier, monospace;
  }
  header {font-size: large;}
  h1 {font-size: medium;}
  a {font-size: small; text-decoration: underline;}
  p {font-size: small;}
}

@media only screen and (max-width: 300px) {
  /* For feature phones: */
  body {
    background-color: honeydew;
  }
  header, h2, a, p {
    color: black;
    font-family: system;
  }
  header {font-size: large;}
  h1 {font-size: medium;}
  a {font-size: small; text-decoration: underline;}
  p {font-size: small;}
}

@media (max-width: 1026px) {
    .map1 { display: none; }
}
@media (min-width: 1026px) {
    .map2 { display: none; }
}
@media (max-width: 300px) {
    .map2 { display: none; }
    .map1 { display: none; }
    .imgs { display: none; } 
}

























/* https://codeconvey.com/simple-image-slideshow-in-html/ */


.container {
  margin: 50px auto;
  width: 60vh;
  height: 80vh;
  overflow: hidden;
  border: 10px solid;
  border-top-color: #856036;
  border-left-color: #5d4426;
  border-bottom-color: #856036;
  border-right-color: #5d4426;
  position: relative;
}

.photo {
  position: absolute;
  animation: round 16s infinite;
  opacity: 0;
}

@keyframes round {
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
img:nth-child(1) {
  animation-delay: 12s;
}

img:nth-child(2) {
  animation-delay: 8s;
}

img:nth-child(3) {
  animation-delay: 4s;
}

img:nth-child(4) {
  animation-delay: 0s;
}