body {
    font-family: Verdana, Geneva, sans-serif;
    margin-left:        15%;
    margin-bottom:      10%;
    background-image: linear-gradient(to bottom, #ede8e4, #868f96);
}



p {
    text-indent:    1em;
    text-align:     justify;
    color:          #003333;
    padding:        1em;
    margin:         1em;
}



div#main {
    width:          80%;
    /*background-image: url(../images/headerImg03.jpg);*/
    background-position: top;
    background-repeat: no-repeat;
    border:         1px solid #ccc;
    border-radius:  15px;
    box-shadow:     5px 5px 11px 4px #808080;
    background-image: linear-gradient(to top, #ede8e4, #868f96);
}

div#header {
    background-image: linear-gradient(to bottom, #ede8e4, #868f96);
    /*background-image: url(../images/headerImg03.jpg); */
    background-position: center;
    width:          90%;
    margin:         auto;
    margin-top:     1em;
    margin-bottom:  1em;
    box-shadow:     5px 5px 11px 4px #808080;
    border:         1px solid #eee;
    border-radius:  7px;
}
h1, h2 {
    width:          75%;
    margin:         auto;

    text-align:     center;
    padding:        1em;
    text-shadow:    1px 1px 3px #003300;

}
h1  {
    border-bottom:  2px solid #900;
}


div#footer {
    width:  75%;
    margin: auto;
    padding: 1em;
    text-align: center;
    border-top: 2px solid #900;
}
nav {
        display: flex;
        justify-content: space-around;
        background-color: #444;
        padding: 0.5rem;
        }
nav a {
    color: #fff;
    text-decoration: none;
    padding:    1rem;
    border-radius: 5px;
}
nav a:hover {
    color: #444;
    background-color:   #ccc;
}

.dropdown {
      color: #fff;
    text-decoration: none;
    padding:    1rem;
    border-radius: 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow:     5px 5px 11px 4px #808080;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: .5em;
    text-decoration: none;
    display: block;
    border: 1px solid #ccc;

    text-align: center;
}

/* */
.dropdown-content a:hover {
    color: #ccc;
    background-color:   #900;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}