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

#container a {
  color: #ED64F5;
  font-weight: bold;
}

#header {
  width: 100%;
  background-color: #5e4e8c;
  height: 150px;
                /* 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%;
        }

#navbar {
  height: 40px;
  background-color: #13092D;
  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: #ED64F5;
/* navbar text color */
  font-weight: 800;
  text-decoration: none;
  /* this removes the underline */
}

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

#flex {
  display: flex;
}

aside {
  background-color: #241445;
  width: 200px;
  padding: 20px;
  font-size: smaller;
/* this makes the sidebar text slightly smaller */
}

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

    #leftSidebar {
      order: 1;
    }

    #rightSidebar {
       order: 3;
    }

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

h1, h2, h3 {
  color: #ED64F5;
}

h1 {
  font-size: 25px;
}

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

            #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%;
}
            }