body {
  background-image: url("https://dovebane.neocities.org/Images/New%20Backgrounds/stars%201.gif");
  background-attachment: fixed;
  color: white;
}

marquee {
  font-size: 18px;
}

            /* the "container" is what wraps your entire website */
            #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 */
            }

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #343434;
                flex: 1;
                padding: 10px;
                order: 2;
                font-size: 17px;
                border-style: inset;
                border-color: white;
                border-radius: 7px;
                border-width: 3px;
            }

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

            #container a:hover {
              color: #FF5858;
            }  


            /* navigation section!! HORIZONTAL NAVBAR */
            #navbar {
                height: 40px;
                background-color: #333232;
                /* navbar color */
                width: 100%;
                border-style: inset;
                border-color: white;
                border-radius: 7px;
                border-width: 2px;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 5px;
            }

            /* navigation links*/
            #navbar li a {
                color: #E8E6E6;
                /* navbar text color */
                font-weight: 800;
                font-size: 25px;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #FF5858;
                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: #1B1B1B;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
                border-style: inset;
                border-color: white;
                border-radius: 7px;
                border-width: 3px;
            }