
/* General Setup & Alignment */
html, body {
    height: 100%; /*stretches the page to help with centering*/
}

html {
    display: table;
    margin: auto; /*these two fields help center the body*/
}

body {
    display: table-cell;
    vertical-align: middle; /*these two fields help center the body*/
    background-color: #556633;
    font-family: Verdana;
    font-size: 14px;
    color: #221105;
}

/* Pixel font class */
.pixel {
    filter: drop-shadow(1px 1px #ad8437);
}

/* Nav Bar Section */
ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #556633;
}

li.nav {
  float: left;
  font-weight: bold;
}

li.nav a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color on hover */
li.nav a:hover {
  background-color: #EEDDAA;
  color: #669944;
}




