/* === GLOBAL STYLES === */

body {
    color: #00ff62;
    font-family: 'Courier New', monospace;
    margin: 0;
    background-image: url(/background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

strong {
    color: #00ff62;
}

h1, h2, h3 {
    color: #00ff62;
}

h1 {
    font-size: 25px;
    font-family: 'Courier New', monospace;
}


/* === CONTAINER === */

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: #4ffff9;
    font-weight: bold;
    /* text-decoration: none; */
}


/* === HEADER === */

#header {
    width: 100%;
    height: 150px;
    background-color: #00ff62;
    background-image: url(/header.png);
    background-size: cover;
}


/* === NAVIGATION BAR === */

#navbar {
    height: 40px;
    background-color: #000000;
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #00ff62;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #4ffff9;
    text-decoration: underline;
}


/* === FLEX LAYOUT === */

#flex {
    display: flex;
}

aside {
    background-color: #000000;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: #000000;
    flex: 1;
    padding: 20px;
    order: 2;
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}


/* === FOOTER === */

footer {
    background-color: #13092D;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}


/* === EXTRAS === */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}


/* === MEDIA QUERIES === */

@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;
    }
}
