/* 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 {
  background-color: #3d5c21;
  color: #ededd5;
  font-family: Serif;
}

h1 {
  font-size: 50px;
  text-align: center;
}

  #WebsiteIntro {
      overflow-x: hidden;
      height: 6em;
      width: 30em;
      padding: 1rem;
      border-top: 4px solid #ededd5;
      border-left: 4px solid #ededd5;
      border-right: 4px solid #ededd5;
      border-bottom: 4px solid #ededd5;
      background-image: url("https://files.catbox.moe/homm2l.jpg");
    }

  /* navbar main design*/
  #topnav {
    width: 100%; 
  background-color: #85ad47;
  color: #ededd5;
  overflow: auto;
}

/* navbar link colors*/
#topnav a{
  float: left;
  color: #ededd5;
  text-align: center;
  padding: 10px ;
  text-decoration: none;
  font-size: 25px;
   width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
}

/* Change the color of links on hover */
#topnav a:hover {
  background-color: #b8cb84;
  color: #ededd5;
}


