main {
    background-color: rgba(73, 100, 87, .5);
}

div#header {
    background-color: rgba(73, 100, 87, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 10px;
}

h1#logo {
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2em;
    margin-left: 50px;
}

h1#logo a {
    color: rgb(244, 240, 237);
    text-decoration: none;
}

nav#nav-main ol {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
}

nav#nav-main ol li a {
    padding: 15px;
    margin-left: 20px;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
    color: rgb(244, 240, 237);
    text-decoration: none;
}

nav#nav-main ol li a:hover {
    color: rgb(132, 67, 64);
}

/* Main */

main>section {
    margin: 0px;
    padding: 20px;
}

main>section h2 {
    font-family: "justus-pro", serif;
    font-size: 2em;
    font-weight: 300;
    font-style: normal;
    line-height: 1.2em;
}


main>section h2,
main>section h3,
main>section h4,
main>section h5,
main>section h6 {
    padding: 10px;
}

main>section>p {
    padding: 10px 0;
    line-height: 1.25em;;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    max-width: 900px;
}

main a:link {
    color: green;
}

main a:visited {
    color: red;
}

main a:hover {
    color: orange;
}

main a:active {
    color: navy;

}


section>dl>dt {
    font-weight: bold;
}

section>dl>dd {
    font-style: italic;
    margin-left: 24px;
}

/* Basic CSS for the Figure and Figcaption */
section>figure {
    padding: 10px;
    text-align: center;
}

section>figure>img {
    border: thin solid black;
    padding: 10px;
    background-color: rgb(255, 255, 255);
}

section>figure>figcaption {
    font-size: smaller;
    font-style: italic;
}

/* The Row of Images */
div.row-of-images {
    outline: thin solid gray;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

div.row-of-images a {
    border: thin solid blue;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

