 :root {
 
                /* colors */
                --content: #fff;
            }


            @font-face {
                font-family: Verdana;
                src: url('verdana.ttf');
            }

  @font-face {
            font-family: CHERI___;
            src: url(cheri.ttf);
            }
   
            #CHERI___ {
            font-family: CHERI___;
            }

           

            body {
                font-family: 'verdana', sans-serif;
                margin: 0;
                background-color: #fff;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #000;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            
            #container {
                max-width: 100%;
                max-height: 100%;
                /* 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;
                /* this centers the entire page */
            }

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

            #header {
                width: 100%;
                background-color: #021C8B;
                /* header color here! */
                height: 75px;
                /* 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! */
                padding: 5px;
                background-size: 100%;
                border-bottom: 2px solid;
            }

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p:nth-child(even) {
  .img {
    float:right;
  }
}


            #flex {
                display: flex;
            }



            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #fff;
                flex: 1;
                padding: 5px;
                order: 2;
                margin: 10;
            }

            /* 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! */

            

           
            h1 {
                color: #ffffff;
                font-family: "CHERI___";
                font-size: 25px;
                padding: 0px;
                margin: 5px;
            }

            h2 {
                color: #13111F;
                font-family: "verdana";
                font-size: 12;
            }

            h3 {
                color: #ffffff;
                font-family: "CHERI___";
                font-size: 20;
                margin: 0px;

            }

            strong {
                /* this styles bold text */
                color: 13111F;
            }

            

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 1px;
                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;
                }

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

             /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ff8db6 #1c1c1c;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #1c1c1c;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ff8db6;
    border-radius: 10px;
    border: 3px none #000000;
  }
  
  *::-webkit-scrollbar-button {
    display: block; /* Ensures arrow buttons are visible */
    background: #ff8db6;
}
                
                
            }
        