/* 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-color: #1D2249;
  color: white;
  
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
  
  background-image: url("index/background.png");
  background-repeat: repeat;
  
     text-align: center;
                margin: 0;
}


* {box-sizing: border-box;
            }


#container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
            }

          
            #container a {
                color: #1D2249;
                font-weight: bold;
            }
            
            
            #container marquee {
                background-color:#1D2249;
                }

            #header {
                width: 100%;
                background-image: var(--header-image);
                background-size: 100%;
                padding:20px;

            }
            
            #underbar {
                height: 24px;
                background-color: #1D2249;
                /* navbar color */
                width: 100%;
            }

            #flex {
                display: flex;
            }

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


   
            main {
                background-color: none;
                flex: 1;
                padding: 20px;
                order: 2;
            }



            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

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

            h1,
            h2,
            h3 {
                color: #39FF14;
            }

            h1 {
                font-family: EnglishTowne;
                font-size: 25px;
                text-align: center;
            }

            h3 {
                font-family: Webfont;
                font-size: 20px;
                text-align: center;
            }
            
           h4 {
                font-family: GothicPunk;
                font-size: 40px;
                text-align: center;
                color: #e0218a;
            }
           b1 {
                font-family: VeniceClassic;
                font-size: 20px;
                text-align: center;
                color: #e0218a;
            }
            strong {
                /* this styles bold text */
                color: #ED64F5;
            }


            .box {
                background-color: #1D2249;
                border: 1px solid #ED64F5;
                padding: 10px;
            }
            .box2 {
                background-color: #1D2249;
                border: 1px solid #39FF14;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #1D2249;
            }






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

                aside {
                    width: 100%;
                }


                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
                
        
                
           
