            body {
                    font-family: 'lucida sans';
                    margin: 0;
                    background-color: #C977AA;
                    /* you can delete the line below if you'd prefer to not use an image */
                    background-size: 65px;
                    color: #000000;
                    background-image: url('./images/Illustration3.png');
                    background-repeat: no-repeat; 
                    background-size: cover;
                    background-attachment: fixed;
                }



                * {
                    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: #FDFDFD;
                    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: #AAE5E1;
                    /* 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: ;
                    background-size: 100%;
                    border-radius: 100px;
                    border: 5px dotted #74CCDB;
                }

                /* navigation section!! */
                #navbar {
                    height: 40px;
                    background-color: #FDFDFD;
                    /* 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: #000000;
                    /* 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: #BFFFFC;
                    text-decoration: underline;
                }

                #flex {
                    display: flex;
                }

                /* this colors BOTH sidebars
                if you want to style them separately,
                create styles for #leftSidebar and #rightSidebar */

                    /* NOTE TO SELF: for future reference, this is where you were struggling with sidebars vs main content!!*/
                aside {
                    background-color: #BFFFFC;
                    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: #F3AED9;
                    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;
                }

                #footer a{
                   color: #ED64F5;
                }

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

                h1 {
                    font-size: 25px;
                }

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

                /* this is just a cool box, it's the darker colored one */
                .box {
                    background-color: #715aac;
                    border: 1px solid #000000;
                    padding: 10px;
                }

                /* CSS for extras */

                #topBar {
                    width: 100%;
                    height: 30px;
                    padding: 10px;
                    font-size: smaller;
                    animation: marquee 10s linear infinite;
                    display: inline-block;
                    
                }           
                @keyframes marquee {
                    from {
                        transform: translateX(100%);
                    }
                    to { 
                        transform: translateX(-100%);
                    }
                }

                #demotext {
                    text-align: center;
                    font-size: xx-large;
                    color: #FFFFFF;
                    text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #FF2D95 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
                }

                #homebutton {
                    position:absolute;
                    top: 250px;
                    right: 0px;
                }
