/* 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." */

h1 {text-align: center;
    background-color: black;
    color: white;
    font-size: 10pt;
    
}
h2 {text-align: center;
    color: white;
}



body {
                font-family: 'verdana';
                margin: 0;
                background-color: black;
                /* you can delete the line below if you'd prefer to not use an image */
       
                color: black;
            }

            * {
                box-sizing: border-box;
            }

           
            #container {
  max-width: 950px;     /* same as your largest gif */
  margin: 0 auto;       /* center the whole container */
  
}

.center-img img {
  display: block;
  margin: 20px auto;    /* centers each image with spacing */
}


            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: black;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: black;
                /* header color here! */
                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! */

            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: black;
                /* 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: red;
                /* 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: teal;
                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: white;
                width: 250px;
                padding: 20px;


                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: white;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }


