/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  background-color:black;
  border-top: double #ED64F5;
  border-bottom: double #9a56e8;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.navbar a:hover {
  background-color: #ED64F5;
  color: black;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #ED64F5;
  color: white;
}


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
                
                #leftSidebar {
                    order: 2;
                }
</style>