 /* below this line is CSS for the layout */
                @font-face {
    font-family: "moon flower"; 
    src: url("/fonts/Moon Flower.ttf") format("truetype");
                }
body {
  background-image: url('img/stars.gif');
}
            /* 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: 1000px;
                /* 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:link {
                color: hotpink;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
                text-decoration:none
            }
                      a:hover {
                color: hotpink;
            }

            #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-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }
nav {
  max-height:60px;}
            /* navigation section!! */
            #navbar {
                height: 60px;
                margin:0px auto;
                background-color: rgb(10, 10, 10, 0.9);
                width: 100%;
                border: none;
                border-radius: 15px;
                box-shadow: 0px 0px 15px 2px white;
            }

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

            #navbar li {
                padding-top: 0px
                margin: a;
            }

            /* navigation links*/
            #navbar li a {
              font-family: "moon flower", sans-serif;
              font-size: 2em;
                color: white;
                /* navbar text color */
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: pink;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: rgb(10, 10, 10, 0.9);
                width: 200px;
                padding: 20px;
                border: none;
                border-radius: 20px;
                margin-top: 20px;
                margin-bottom: 10px;
                box-shadow: 0px 0px 15px 2px white;
                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: rgb(10, 10, 10, 0.9);
                flex: 1;
                padding: 20px;
                order: 2;
                border: none;
                border-radius: 20px;
                margin-top: 20px;
                margin-bottom: 10px;
                margin-left: 10px;
                margin-right: 10px;
                box-shadow: 0px 0px 15px 2px white;
            }

            /* 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;
            }
body{
  font-family: Tahoma, sans-serif;
   color: white;}
            h1,
            h2,
            h3 {
                color: white;
            }

            h1 {
              font-family: "moon flower", sans-serif;
                font-size: 70px;  
            }

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