/* 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." */

/*pink-white is #efdadc; dark-brown is #362a24; dark-green is #0a3902; gold is #dd9a00*/

body {
  font-family: "optima", sans-serif;
  color: #f7e98e;
  background-color: #002604;
  font-size: 16px;
}
/*pink-white is #efdadc; dark-brown is #362a24; dark-green is #0a3902; gold is #dd9a00; rich-red is #A50000*/

h1 {
  font-family: fantasy;
  color: #f4c430;
  font-size: 24px;
  font-weight: bold;
  font-variant: small-caps;
  margin-bottom: 0px;
  pointer-events: none;
}

h2 {
  font-family: fantasy;
  color: #f4c430;
  font-size: 18px;
  font-weight: bold;
  font-variant: small-caps;
}

h3 {
  font-family: fantasy;
  color: #f4c430;
  font-size: 12px;
  font-weight: bold;
  font-variant: small-caps;
}

/* unvisited link */
a:link {
  color: #cca01d;
}

/* visited link */
a:visited {
  color: #cca01d;
}

/* mouse over link */
a:hover {
  color: #fafad2;
}

nav ul {
  list-style-type: none;
  margin: 10;
  padding: 0;
  overflow: hidden;
  background-color: #002D0C;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: #b8860b;
  text-align: center;
  padding: 2px 10px;
  text-decoration: none;
} 

nav li a:visited {
  color: #b8860b;
}

nav li a:hover{
  background-color: #001E08;
  color: #b8860b;
}

nav .active {
  font-weight: bolder;
}

nav {
  font-family: fantasy;
  font-size: 14px;
  font-variant: small-caps;
}

hr {
  border-top: 1px solid #51453F;
}

blockquote {
  font-family: "optima", sans-serif;
}
