 
            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url('imgs/FDLbanner.png');
                --body-bg-image: url('imgs/fdlpawbg.png');

                /* colors */
                --content: #43256E;
            }

            /* this is the body of your website */
            /* you can change the font, background color, and more here! */
            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
              /*  background-color: #08031A; */
                /* you can delete the line below if you'd prefer to not use an image */
                color: #65004d;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #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;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #4f003c;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #contentWrapper {
                border: 6px solid #65004d;
                border-radius: 12px; /* optional: rounded corners */
                overflow: hidden;    /* optional: keeps border neat with child elements */
                margin-top: 10px;    /* optional: spacing from header */
            }
            #header {
                width: 100%;
                /* 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! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                min-height: 3.5rem;
                padding: 0.5rem 0;
                background-color: #4f003c;
                /* 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: #f2f2f2;
                /* navbar text color */
                font-weight: 800;
                font-family: 'Zeyada', cursive;
                /* this sets the font for the navbar links */
                font-size: 2rem;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #65004d;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                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: #e6e1e8;
                flex: 1;
                padding: 20px;
                order: 2;
                font-family: 'Lora', serif;
                text-align: center;
                font-size: 1rem;
                align-items: center;
                display: flex;
                flex-direction: column;
                /* this sets the font for the main content area */  
            }

            /* 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;
            }

            footer {
                background-color: #4f003c;
                /* background color for footer */
                width: 100%;
                height: 60px;
                padding: 10px;
                text-align: center;
		        color: #e6e1e8;
                font-family: 'Zeyada', cursive;
                font-size: 30px;
                /* this sets the font for the footer */ 
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #65004d;
            }

            h1 {
                font-size: 2.5rem;
                font-family: 'Zeyada', cursive;
                text-align: center;
                margin-bottom: 0em;
                margin-top: 0em;
            }
            p {
                margin-top: 0em; /* adjust as needed */
                max-width: 600px; 
            }

            strong {
                /* this styles bold text */
                color: #4f003c;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #65004d;
            }

            #updates {
                max-height: 150px;      /* Adjust height as needed */
                max-width: 400px;
                margin: 0 auto;        /* centers the div */
                padding: 0.5em;
                overflow-y: auto;       /* Enables vertical scrolling */
                padding: 0.5em;
                border: 2px solid #65004d; /* Optional: border for visibility */
                border-radius: 12px;
                background: #fff8fc;       /* Optional: background color */
                margin-bottom: 1em;
            }
            ::-webkit-scrollbar {
                width: 8px;
                background: #fff8fc;
            }

            ::-webkit-scrollbar-thumb {
                background: #65004d;
                border-radius: 4px;
            }

            ::-webkit-scrollbar-track {
                background: #fff8fc;
            }

            #cliques {
                max-width: 400px;      /* or use width: 400px; for a fixed width */
                margin: 0 auto;        /* centers the div */
                padding: 0.5em;
                display: flex;
                flex-wrap: wrap; /* allows images to wrap to the next line if needed */
                justify-content: space-evenly; /* centers images horizontally */
                align-items: center;           /* vertically align images */
                gap: 0.5em; 
            }

            .float-left {
                float: left;
                margin-right: 1em;  /* space between image and text */
                margin-bottom: 0.5em; /* optional: space below image */
            }

            .centered-p {
                display: flex;
                align-items: center;      /* vertically center image and text */
                justify-content: center;  /* horizontally center the whole group */
                gap: 1em;                 /* space between image and text */
                text-align: left;         /* keeps text left-aligned next to image */
                margin: 2em auto 1em auto; /* centers the block horizontally */
                text-align: left;
            }
            /* 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;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
        