 /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many! */
    body {
        text-align: center;
        font-family: 'Arial', Sans-Serif;
        font-size: 16px;
        color: #ffffff; /*text colour*/
        Margin: 10;
        background-color: #55cc7a;
        /* you can delete the line below if you'd prefer to not use an image */
        box-sizing: border-box;
    }
/* below this line is CSS for the layout */
            /* 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: 89%;
        /*width of the layout. if you change the above number you gotta change the media query at the bototm if this code*/
        margin: 0 auto; /*this centers the whole page*/
    }
    /* the area below is for all links on your page
    EXCEPT for the navigation */
    #container a{
        color: #ED64F5;
        font-weight: bold;
    /* if you want to remove the underline
      you can add a linethat says:
      text-decoration:none; */
            }
    
    #header {
        Margin: 10px;
        width: 100%;
        background-color: #5e4e8c;
        /* 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: 80%;*/
    }
    #navbar {
        height: 40px;
        background-color: #13092d;
        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: #a49cba;
        text-decoration: underline;
    }
    
    #flex {
        display: flex;
    }
    /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
    aside {;
        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:#202020;
        flex: 2;
        padding: 20px;
        order: 3;
    }
    /* 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: 2;
    }
    
    footer {
        background-color: #13092D;
        width: 100%;
        height: 40px;
        padding: 10px;
        text-align: center;
    }
    
    h1{font-size:25px;} 
    h2, 
    h3{color:#ed64f5;} 
    strong {/*bold text*/ color:#ed64f5;}
    
    .verticalLine {border-left: thick solid lime;}
    /*cool box slightly darker than other box*/
    .box {
        background-color: #13092D;
        border: 1px solid #ED64F5;
        padding: 10px;
    }
    .mudaebox{
        display:inline-block;
        position: relative;
        text-align: left;
        text-indent: 5px;
        font-size: 14px;
        line-height: 5px;
        background-color:#202721;
        border: 1px solid #5E7367;
        padding: 10px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    /*EXTRAS*/
    
    #topBar {
        width: 100%;
        height: 30px;
        padding: 10px;
        font-size: smaller;
        background-color: #13092D;
    }
    .floatingbox1 {
        position: fixed;
        top: 10px;
        left: 10px;
        border: 1px solid white;
        border-radius: 10px;
        padding: 10px;
        margin: 10px;
        width: 300px;
        background-color: #050101;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

         }
    legend {
        background-color: #101010;
        color: white;
        padding: 5px 10px;
        margin-left:48%;
        font-size: 20px;
        
        
        /* 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: 800px) {
                #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;
                }
            }
