
      :root {
        --header-image: url('/imgs/banner2.png');
        --body-bg-image: url('imgs/redbg2.png');
        --content: #43256E;
            }

/* FONTS */
        @font-face {
                font-family: Helvetica;
                src: url('/fonts/Helvetica.ttf');
            }
        @font-face {
                font-family: Helvetica;
                src: url('/fonts/Helvetica-Bold.ttf');
                font-weight: bold;
            }
        @font-face {
                font-family: Helvetica;
                src: url('/fonts/Helvetica-Italic.ttf');
                font-style: italic;
            }
        @font-face {
                font-family: Helvetica;
                src: url('/fonts/Helvetica-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }
            body {
                font-family: 'Helvetica', sans-serif;
                margin: 0;
                background-color: #f9f4f4;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #000000;
                background-image: var(--body-bg-image);
                 -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            * {
                box-sizing: border-box;
            }


/* LAYOUT CSS */
      #container {
        max-width: 900px;
        margin: 0 auto; }
            
  

      /* links MINUS navigation */
      #container a {
        color: #3B3B3B;
        font-weight: bold;}

      #header {
        width: 100%;
        background-color: #C62229;
        height: 180px;
        background-image: var(--header-image);
        background-size: 100%; }
        
        #navbar {
          height: 40px;
          background-color: #C62229;
          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: #E8D9D9;
                /* navbar text color */
              font-weight: 800;
              text-decoration: none; }
            /* navigation link when a link is hovered over */
            #navbar li a:hover {
              color: #F0E0E1;
              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: #eedada;
                width: 200px;
                padding: 20px;
                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: #f9f4f4;
                flex: 1;
                padding: 20px;
                order: 2;
            }

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

            footer {
                background-color: #C62229;
                /* background color for footer */
                width: 100%;
                height: 60px;
                padding: 10px;
                text-align: center;
                color: #f9f4f4;
                /* this centers the footer text */
            }

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

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #000000;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #EBE2E2;
                border: 2px solid #C62229;
                padding: 10px;
            }







  /* CSS for extras */
   #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
            
            
            
            
            
            
            
            
            
            /* 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;
                }
                 html {
        -webkit-text-size-adjust: none;
     }
                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;
                }
            }


    