

@font-face {                  
font-family: 'BPrever-Bold';
src: url(https://humantooth.neocities.org/fonts/BPreverBold.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
 @font-face {
 font-family: 'BPrever-Bold';
src: url(https://humantooth.neocities.org/fonts/BPreverBold.woff) format('woff');
 font-weight: bold;
 font-style: normal;
            }


            * {
                box-sizing: border-box;
            }


            body {
                font-family:'BPrever-Bold';
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 457px;
                color: #83468d;
                background-image:url("https://annamatopoeia.art/starbackground.png");
}

            #container {
                max-width: 900px;
                margin: 0 auto;
                /* this centers the entire page */
            }

   
            #container a {
                max-width:900px;
                color: #ED64F5;
                font-weight: bold;
                }
   #logo {
                  background-image: url("https://annamatopoeia.art/Annamatopoeiaartlogo.png");
                background-repeat: no-repeat;
                background-size: 472px;
                background-position: center;
                    height: 150px;
          }
      #header {
                width: 100%;
                background-color: #5e4e8c;
                opacity: 0;

                /* header color here! */
                /* 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! */
     
    
            }

            /* navigation section!! */
            #navbar {
                background-color: #d3f4ff;
                /* 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: #cf9bff;
                /* navbar text color */
                font-weight: 800;
                font-size: 35px;
                text-decoration: none;
                /* this removes the underline */
            }

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

            #flex {
                display: flex;
            }

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #eeccff;
                flex: 1;
                padding: 20px;
                order: 2;
            }

    */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #ffd3fc;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

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

            h1 {
                font-size: 25px;
            }

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

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






