/*layout*/

body{
    background-color: #8e90a7;
    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;
}

#container {
    max-width: 900px;
    margin: 3em auto;
    width: 90%;
    background-color: #e0d9e0;
    outline-style: none;
}
#container a{
    color: #505e79;
    font-weight: bold;
    text-decoration: none;
}
#container a:hover{
    color: #8e90a7;
    text-decoration: underline; 
}
    #content {
    padding: 10px 5% 20px 5%;
}

#header{
    width: 100%;
    background-color: #8e90a7;
    height: 0px;
    background-size: 100%;
}

#navbar{
    height: 40px;
    width: 100%;
    background-color: #505e79;
    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{
    color: #20304a;
    font-weight: bolder;
    text-decoration: none;
    font-size: 1em;
}
#navbar li a:hover{
    color: #e0d9e0;
    text-decoration: underline;
}

.dropbtn{
    border: none;
    background-color: transparent;
    color: #20304a;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #505e79;
    min-width: 160px;
    z-index: 1;
}
.dropdown-content a{
    color: #20304a;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #20304a;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    color:#e0d9e0;
    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*/

h1 {
     color: #8e90a7;
    font-size: 2em;
    font-family: 'verdana';
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
}
h2 {
    color: #20304a;
    font-size: 1.5em;
    font-family: 'verdana';
    font-weight: bold; 
    text-transform: uppercase;
    text-align: center;
}
h3{
    color: #20304a;
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    text-transform: capitalize;
}
h4{
    color: #505e79;
    font-weight: bold;
    font-size: 1.3em;
    text-align: left;
    text-transform: capitalize;  
}
h5{
    color:#030512;
    font-size: 1em;
    text-align: left;
}
h6{
    color: #8e90a7;
    font-family: Verdana;
    font-size: 1em;
    text-align: left;
}
.inter{
    font-family: 'Times New Roman', Times, serif;
    color: #6d6f81;
}