@charset "utf-8";

html {
  background-color: hsl(0, 0%, 91%);
  background-image: url("Background.jpg");
}

body {
  font-family: Verdana, Geneva, sans-serif;
  color: rgb(62, 62, 62);
  background-color: rgb(209, 244, 220);
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

header {
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 1.3em;
}

h1, h2 {
  text-shadow: 4px 6px 5px gray;
}

/*nav {
  background-color: hsl(209, 59%, 92%);
  padding: 15px;
  text-align: center;
}

nav a {
  padding: 0 10px;
  text-decoration: none;
  color: hsl(210, 65%, 20%);
}

nav a:hover {
  text-decoration: underline;
  color: hsl(279, 38%, 67%);
}
*/
nav ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
nav li {
  display: block;
  width: 20%;
  float: left;
}
nav a {
  text-decoration: none;
  display: block;
  background-color: rgba(74, 100, 63);
  color: rgba( 238, 189, 103);
  line-height: 2.8em;
  text-align: center;
}
nav a:hover {
  background-color: rgba(143, 190, 146);
  color: white;
}
main {
  padding: 20px 20px;
  margin-top: 35px;
}

main img {
  width: 25%;
  padding: 25px;
  height: auto;
  display: block;
  margin: 0 auto;
  float: right;
}
header img {
  width: 100%;
}

body > footer {
  background-color: rgba(209,244,220);
  color: rgba(102, 102, 102, 0.6);
  font-weight: bold;
  font-size: 0.9em;
  line-height: 3em;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  clear:both;
}

main ol {
  list-style-type: upper-roman;
}


