:root {
    --header-image: url('/assets/banner.png');
    --body-bg-image: url('/assets/sitebg.png');

    /* colors */
    --content: orange;
}

html {
    height: 100%;
}

body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    height: 100%;
    background-color: #08031A;
    /* you can delete the line below if you'd prefer to not use an image */
    background-image: var(--body-bg-image);
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    color: white;
}

* {
    box-sizing: border-box;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
#container {
    max-width: 900px;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
    color: #ED64F5;
    font-weight: bold;
    /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
}

#header {
    width: 100%;
    background-color: #5e4e8c;
    /* header color here! */
    height: 170px;
    /* this is only for a background image! */
    /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
    background-image: var(--header-image);
    background-size: 100%;
	outline: 1px solid #ae6a00; 
}

.topnav {
    color: #ffffff;
    font-family: Tahoma, sans-serif;
	
}

.topnav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flow-root;
    background: #474747;
    background: -moz-linear-gradient(top, #474747 0%, #474747 29%, #030D14 100%);
    background: -webkit-linear-gradient(top, #474747 0%, #474747 29%, #030D14 100%);
    background: linear-gradient(to bottom, #474747 0%, #474747 29%, #030D14 100%);
}

.topnav ul li {
    float: left;
}
#container .topnav a {
    color: white;
}

.topnav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 7px 10px;
    font-size: 10px;
    text-decoration: none;
}

.topnav .dropdown-content a:hover {
    background-color: #FFDE90;
}

.topnav ul li a:hover {
    background-color: #111111;
}

.topnav .dropdown {
    position: relative;
    display: inline-block;
    float: left;
}

.topnav .dropbtn {
    background: transparent;
    color: white;
    padding: 7px 10px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    font-family: Tahoma, sans-serif;
}

.topnav .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #FFF3E2;
    min-width: 45px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.topnav .dropdown-content a {
    color: orange !important;
    padding: 5px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 11px;
}

.topnav .dropdown:hover .dropdown-content {
    display: block;
}

.topnav .dropdown:hover .dropbtn {
    background-color: #111111;
}

#flex {
    display: flex;
    flex: 1 0 auto;
outline: 1px solid gray; 
}

main {
    background-color: #eceae3;
    flex: 1;
    padding: 20px;
    order: 2;
}

footer {
   background: #474747;
    background: -moz-linear-gradient(top, #474747 0%, #474747 29%, #030D14 100%);
    background: -webkit-linear-gradient(top, #474747 0%, #474747 29%, #030D14 100%);
    background: linear-gradient(to bottom, #474747 0%, #474747 29%, #030D14 100%);
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
    flex-shrink: 0;
}

h1,
h2,
h3 {
    color: orange; 
    font-family: Tahoma; 
}

h1 {
    font-size: 25px;
}

p {
    color:black;
}
strong {
    /* this styles bold text */
    color: #ED64F5;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #13092D;
    border: 1px solid #ED64F5;
    padding: 10px;
}

/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

/* Style the search box inside the navigation bar */
#container #header input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-top: 140px;
    margin-right: 10px;
    width: 200px;
    font-size: 10px;
}