html {
    background-color: rgb(255, 81, 81);
}

header h1 {
    display:block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30pt;
    text-align: left;
    color: white;
    text-shadow: 2px 4px 8px black;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
}

div#content {
    background-color: skyblue;
    display: block;
    border: solid, black, 2px;
    border-left: 0px;
    border-right: 0px;
}

footer {
    background-color: black;
    display: block;
    padding: 10px;
    font-size: 8pt;
    color: red;
}

nav a {
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    display: block;
    width: 130px;
    margin: 10px 0 0 0;
    padding: 5px;
    color: black;
    background-color: white;
    border: 3px solid black;
    border-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

nav a:hover {
    color: white;
    background-color: darkblue;
    border-color: white;
}

nav a.currentpage {
    color: white;
    background-color: darkblue;
    border-color: white;
}

div#container {
    border: solid, black;
    background-image: url(Images/Coral_Reef.jpg);
}

nav {
    border: solid, black, 2px;
    border-top: 0px;
    border-bottom: 0px;
    border-left: 0px;
    background-color: darkcyan;
}

nav,
section#main {
    display:table-cell;
    text-align: justify;
    font-size: 10pt;
}

section#main img {
    border: solid, 1px, black;
    display: block;
    padding: 7px;
    background-color: white;
    margin: 10px auto 10px auto;
}

section#main p {
    font-size: 12pt;
    padding: 3px;
}

section#main h2 {
    font-size: 20pt;
}

header {
    height: 110px;
}