body{
    background-color: #a0a0a0;
    background-attachment: scroll;
    background-size: 100%;
    color: #000e1b;
    text-align: justify;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
}

#container {
    max-width: 1000px;
    margin: 3em auto;
    width: 90%;
    outline-style: none;
}
#container a{
    font-weight: bold;
    font-size: 1em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
}
#container a:hover{
    text-decoration: underline; 
}
#content {
    padding: 15px 10% 25px 10%;
}

#header{
    width: 100%;
    height: 0px;
    background-size: 100%;
}

#navbar{
    height: 40px;
    width: 100%;
    font-size: 1em;
}
#navbar ul{
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}
#navbar li{
    padding-top: 9px;
}
#navbar li a{
    font-weight: bolder;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    font-size: 1em;
}
#navbar li a:hover{
    text-decoration: underline;
}
.dropbtn{
    border: none;
    background-color: transparent;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1em;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
}
.dropdown-content a{
    padding: 10px 16px;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: block;
}
.dropdown-content a:hover {
    text-decoration: underline;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    text-decoration: underline;
} 
#flex {
    display: flex;
}
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }
    main {
        order: 1;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

/*text*/

#content p{
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#content li{
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#content h1{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.9em;
  text-align: center;
}
#content h2{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.5em;
  text-decoration: underline;
}
#content h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1em;
    font-weight: bold;
}