@font-face {
    font-family: 'cursecasual';
    src: url('/fonts/cursecasualrus.woff2') format('woff2'),
         url('/fonts/cursecasualrusbyme-webfont.woff') format('woff'); }
body {
                font-family: Arial, sans-serif;
                margin: 0;
                background-color: #000000;
                background-size: 210px;
                color: #fceaff;
                background-image: url("/gr/dblue002.jpg");
            }

#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: #000000;
                /* if you want to remove the underline
                   you can add a line below here that says:
                   text-decoration:none; */
            }

#header {
                width: 100%;
                background-color: #000000;
                border: 1px solid #ffffff;
                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: var(--header-image);
                background-size: 100%;
            }

#navbar {
                height: 40px;
                background-color: #000000;
                border: 1px solid #ffffff;
                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: #ffffff;
                /* 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: #4042ec;
                text-decoration: none;
            }

#flex {
                display: flex;
            }