/*my original css got all messed uppppp*/
/*layout*/
body{
    background-color: #000000;
    color: #c3caca;
    margin: 5px 6vw 7px 6vw;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

img{
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

#container {
    max-width: 900px;
    margin: 0 auto;
}
#container a{
    color: red;
    font-weight: bold;
    text-decoration: none;
}

#header{
    width: 100%;
    background-color: #3d3d3d;
    height: 100px;
    background-image: url(https://images.pexels.com/photos/270815/pexels-photo-270815.jpeg);
    background-size: 100%;
}

#navbar{
    height: 40px;
    width: 100%;
    background-color: #3d3d3d;
    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: red;
    font-weight: bolder;
    text-decoration: none;
}
#navbar li a:hover{
    color: #a49cba;
    text-decoration: underline;
}

.dropbtn{
    border: none;
    background-color: transparent;
    color: red;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #a49cba;
    min-width: 160px;
    z-index: 1;
}
.dropdown-content a{
    color: #000000;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: white;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    color:#a49cba;
    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: red;
    font-size: 2em;
    font-family: "georgia", serif;
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
}
h2{
    color: red;
    font-size: 1.5em;
    font-family: "Times New Roman", serif;
    font-weight: bold; 
    text-transform: uppercase;
    text-align: center;
}
h3{
    color: #cfcfcf;
    font-size: 25px;
    font-weight: bold;
}