/** base css */

/*main elements*/
body {
    background-color: black;
    color: gold;
    font-family: Cambria, Georgia, "Book Antiqua", serif;
    font-size: 1.2em;
    margin-left: 5%;
    margin-right: 5%;
}
h1,h2 {
    color: lightgreen;
}
h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
p {
    /*background-color: blueviolet;*/
    color: aquamarine;
}
a{
    text-decoration: none;
}
a:link{
    color: white;
}
a:visited{
    color: white;
}
a:hover{
    color: aquamarine;
}
a:active{
    color:aquamarine;
}
/*navbar*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover {
background-color: #111;
}
li a#EE{
    color: black;
}
li a#EE:hover{
    color: white;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}
/*specific sections of text*/
pre#main {
    text-align: center;
    /*color: gold;*/
    font-size: 16pt;
}
p.project {
    text-align: left;
    width: 50%;
}
/*editing purposes, media other than text*/
strong.EditThis {
    color: red;
}

.bioPhotos {
    display: flex;
}
