            body {
              height:100%;
              margin:0;
              padding:0;
              background: #b800fc url("/pics/bkgrainbow_neon.png") repeat;
              font-size: 24px;
              font-family: 'Nanum Pen Script', cursive;
              color: #b800fc;
              cursor: url('/pics/cursor.cur'), auto;
            }

            * {
                box-sizing: border-box;
            }
            
            body a {
              text-decoration:none;
              color: #b800fc;
            }
            
          body a:hover {
                color: #b800fc;
                text-shadow: 1px 1px #50ff28, 2px 2px #50ff28;
            }

            /* 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: 1450px;
                /* 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 */
                margin-top: 50px;
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
              color: #b800fc;
              font-size: 24px;
              text-decoration:none;
            }
            
            #container a:hover {
                color: #b800fc;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* 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: #ED64F5;
                /* 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: #ff40ac;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                width: 350px;
                height: 650px;
                padding: 20px;
                background-color: #000;
                background-color: rgba(255, 255, 255, 0.8);
                border: 3px solid #ffb72d;
                border-radius: 15px;
                font-size: 24px;
            }

            #rightSidebar {
                background-image: url(/pics/Key_by_Noctemist.png);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center bottom;
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                flex: 1;
                padding: 20px;
                order: 2;
                line-height: 80%;
                background-color: #fff;
                background-color: rgba(255, 255, 255, 0.8);
                border: 3px solid #ffb72d;
                border-radius: 15px;
            }

            /* 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 {
                width: 100%;
                height: 140px;
                padding: 10px;
                text-align: center;
                background-color: #000;
                background-color: rgba(255, 255, 255, 0.8);
                border: 3px solid #ffb72d;
                border-radius: 15px;
                margin-top: 20px;
                margin-bottom: 40px;
                /* this centers the footer text */
            }

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

            h1 {
                font-size: 26px;
            }

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

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #000;
                border: 3px solid #ffb72d;
                border-radius: 15px;
                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: 1350px) {
                #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;
                }
            }


ul.navigate {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
  font-size: 24px;
  line-height: 100%;
}

ul.navigate li:hover {
  color: #ff40ac;
}

.dropdown {
  position: relative;
  display: inline-block;
  color: #b800fc;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .9);
  border: 3px solid #ffb72d;
  border-radius: 15px;
  min-width: 240px;
  padding: 10px;
  z-index: 1;
  left:0;
  margin-top: -10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.main2 {
  background-color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  min-height: 650px;
  }

.blog {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  display: inline-block;
  border: 3px solid #f59d3a;
  line-height: 130%;  
  font-family: 'Ubuntu', sans-serif;  
  font-size: 16px;
  width: 100%;
  }

.pets {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  display: inline-block;
  border: 3px solid #ffb72d;
  line-height: 100%;  
  width: 95%;
  }
