          :root{
                --header-image: url('https://lh3.googleusercontent.com/pw/AP1GczMKpvTfyo_moJ5frvaP7iQ7eXW7VNr8I7k2U0y9bnwAYTf_SxqhiRmnK0-74LMW9M_ze5nskGFEypdMKoAg0bQggxzQ5Svm_xtiIGh_Hr52HUmVCmM=w2400');
                --body-bg-image: url('https://file.garden/aCJv0FU4PCQNDxo9/backgrounds/stars.gif');
                --bullet-point-image: url('https://file.garden/aCJv0FU4PCQNDxo9/cats/cattie_confused.gif');

                /* colors */
                --sidebar-color: #261844;
                --main-color: #3C285D;
                --header-color: #261844;
                --trim: #0F0A18;
                --accent1: #ABFAA9;
                --accent2: #FFA97E;
                --accent3: #82D173;
                
            }

            /*fonts*/

            @font-face {
                font-family: PixelOperator;
                src: url('https://kittiebat.neocities.org/Fonts/PixelOperatorMono.ttf');
            }

            @font-face {
                font-family: PixelOperator;
                src: url('https://kittiebat.neocities.org/Fonts/PixelOperatorMono-Bold.ttf');
                font-weight: bold;
            }

            body {
                font-family: 'PixelOperator';
                margin: 0;
                background-color: #050914;
                background-size: 200px;
                color: #fceaff;
                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: var(--accent2);
                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: var(--header-color);
                /* 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 {
                height: 40px;
                background-color: var(--trim);
                /* 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: var(--accent1);
                /* 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: var(--accent2);
                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: var(--sidebar-color);
                border: double, var(--trim);
                border-width: 4px;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                list-style: var(--bullet-point-image);
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: var(--main-color);
                border: double, var(--trim);
                border-width: 4px;
                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;
            }

            footer {
                background-color: var(--trim);
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: var(--accent3);
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color:var(--accent1);
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: var(--trim);
                border: 1px dashed var(--accent3);
                padding: 4px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: var(--trim);
            }

.gallery img {
  width: 200px;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  margin-bottom: 10px;
}

.caption {
  color: white;
  font-size: 16px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}



@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;
        }
    }