/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url(bg.png);
  background-size: 300px;
  color: #ffffff;
  font-family: Verdana;
  cursor:url(Cursor.png),default;
}
h1 {
  text-align: center;
  padding: 20px 20px 20px 20px;
  background-image: url('StarBorder.png');
  color: white;
  text-shadow: 3px 3px 1px black;
}
h2 {
  padding: 20px 20px 20px 20px;
  background-image: url('Pent.gif');
  background-size: 55px;
  color: white;
  text-shadow: 3px 3px 1px black;
  }
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;

}
a {
  color: hotpink;
  font-weight: bold;
}
a:hover {
  cursor:url(CursorHover.png),auto;
}
p {
  text-shadow: 3px 3px 1px black;
  text-align: center;
}
divider {
  }
 
 /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* navbar color */
                width: 100%;
            }

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

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

            /* navigation links*/
            #navbar li a {
                color: #ED64F5;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }
            
             /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

             #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: purple;
                width: 200px;
                padding: 20px;
                border: 5px solid hotpink; 
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: purple;
                flex: 1;
                padding: 20px;
                border: 5px solid hotpink; 
                order: 2;
            }
            
            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

    .box {
                background-color: #13092D;
                border: 1px solid #ED64F5;
                padding: 10px;
            }




















