/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  /*Map Background Image and Settings Fixed, centered, and scaled to cover the screen*/
  background-image: url("images/forest-path.jpg");
  background-size: cover;
 /* background-position: center; */
  background-attachment: scroll; /* fixed for background still or scroll */
  background-repeat: no-repeat;
  
  /*Default Background Settings*/
  background-color: white;
  color: black;
  font-family: Verdana;

}
welcome {
    /*Map Background Image and Settings Fixed, centered, and scaled to cover the screen*/
  background-image: url("images/appalachian-vista.jpg");
  background-size: cover;
 /* background-position: center; */
  background-attachment: scroll; /* fixed for background still or scroll */
  background-repeat: no-repeat;
  
  /*Default Background Settings*/
  background-color: white;
  color: black;
  font-family: Verdana;
}
  /* --- Layout Containers (Updated for Photo Background) --- */
.map-container {
  max-width: 900px;
  width: 90%;
  height: 110%;
  margin: 40px auto; /* Added more space top/bottom */
  padding: 40px;

  background-image: url("images/map-scroll.png");
  background-size: cover;
 /* background-position: center; */
  background-attachment: scroll; /* fixed for background still or scroll */
  background-repeat: no-repeat;
}
 .button-container {
       display: flex;
       justify-content: center;
       align-items: center;
       flex-wrap: wrap;
      /* image-rendering: pixelated; */
}
.button-container img {
       
       margin-left: 5px;
       margin-right: 5px;
}
