body {
    background-image: url("images/background.png");
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    color:rgb(182, 94, 11);
    margin: 15em;
}

h1 {
    color:rgb(9, 74, 23);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    font-size: 5em;
    margin: 25px 25px 25px 25px;
}

h2 {
    text-align: left;
    color:rgb(22, 91, 33);
    margin: 25px 25px 25px 25px;
    font-size: 3em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    color:rgb(255, 255, 255);
    background-color:  rgb(12, 70, 16);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: darkgreen;
  }
li {
    font-size:1.5em;
    background-color: bisque;
}

      /* unvisited link */
a:link {
    color: rgb(36, 110, 32);
}

/* visited link */
a:visited {
color: rgb(167, 169, 50);
}

/* mouse over link */
a:hover {
color: rgb(67, 213, 38);
}

/* selected link */
a:active {
color: rgb(16, 90, 136);
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(12, 70, 16);
    color: white;
    text-align: center;
  }