/* 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: black;
  color: white;
  font-family: Verdana;
  max-width: 650px;
  margin: auto;
}

h2, h3 {
  text-align: center;
}

#overlay {
   position: relative;
   top: 30px;
  display: block; /* Hidden by default */
  width: 600px; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  min-height: 800px;
  margin: 0px 20px 50px 175px;
   padding: 30px 30px 30px 30px;
  background-color: rgba(20,79,36,1.0); /* Black background with opacity */
  border-radius: 25px;
}

#navigation-wood {
  background-image: url("images/woodsigns2.jpg");
  width: 200px;
  position: fixed;
  z-index: 1;
  margin: 30px 0px 30px 0px;
}