:root {
    --header-image: url();
    --body-image: url("../images/starrysky.gif");

    --content: #000335;
}

body {
    font-family: "VT323", monospace;
    font-size: 2.3ch;
    margin: 0;
    background-color: black;
    color: aqua;
    /*background-image: var(--body-image);*/

}

* {
    box-sizing: border-box;
    cursor: url("../images/customcursor.png"), auto;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #000335;
    box-shadow: inset 0 0 5px black;
    
}

::-webkit-scrollbar-thumb {
    background-color: aqua;
}

::-webkit-scrollbar-thumb:hover {
    background-color: blue;
}

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: blue;
    font-weight: bold;
}

#container a:hover {
    color: blue;
    text-shadow:
        1px 1px 0 aqua;
}

#container ul {
    list-style: square;
}

#header {
    height: 118px;
    width: 100%;
    border: 1px solid aqua;
    background-color: black;
    height: 150px;
    background-image: var(--header-image);
    background-size: 100%;
}

/*navbar styles in navbar.html now*/

#flex {
    display: flex;
}

.blinkies {
    height: 16px;
}

aside {
    background-color: black;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: #000335;
    flex: 1;
    padding: 20px;
    order: 2;
}

#rightSidebar {
    margin-left: 0px;
    order: 3;
}

footer {
    background-color: black;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}

h1,
h2,
h3 {
    font-family: "Coral Pixels";
    text-shadow: 2px 1px 0 aqua;
}

h1 {
    font-size: 30px;
}

strong {
    font-weight: normal;
    color: aliceblue;
    text-shadow: 0 0 3px red, 0 0 3px red;
}

.handwriting {
    font-family: Caveat, sans-serif;
    color: blue;
}

.box {
    background-color: #000335;
    border: 1px solid aqua;
    padding: 10px;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: black;
}


/*grid options*/
.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: none;
    padding: 10px;
}

.grid-container div {
    padding: 10px;
    text-align: center;
}

/****************************************************/
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}