
:root {
--header-image: url('');
--body-bg-image: url('/images/backgrounds/pew_bg2.png');
--content: white; 
}

/* fonts */
				@font-face {
				font-family: MS Gothic;
			}

			* {
				font-family: 'MS Gothic';
			}

			@font-face {
			font-family: webfont; 
			src: url('/fonts/000webfont.ttf');
			}

			@font-face {
			font-family: heartfont;
			src: url('/fonts/Pixel/heartfont.ttf');
			}

			@font-face {
			font-family: Hypik;
			src: url('/fonts/Hypik.otf');
			}

			@font-face {
			font-family: Digibats;
			src: url('/fonts/Digibats.otf');
			}
			
/* body */

body {
                font-family: 'MS Gothic';
                margin: 0;
                background-color: black;
                background-size: 65px;
                color: white;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

#container {
                max-width: 800px;
                margin: 0 auto;
                position: relative;
            }

#container a {
                color: #ED64F5;
                font-weight: bold;
                text-decoration:none;
            }

#header {
                width: 100%;
                background-color: ;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

/* navigation */

#navbar {
                height: 40px;
                background-color: #13092D;
                /* 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: #ED64F5;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

#navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

#flex {
                display: flex;
            }

aside {
                background-color: #241445;
                width: 400px;
                padding: 20px;
                margin: 20px 10px 20px 0px;
                font-size: smaller;
                z-index: -1;
                /* this makes the sidebar text slightly smaller */
            }


/* main color*/

main {
                background-color: red;
                flex: 1;
                padding: 20px;
                margin: 20px 0px 20px 10px;
                order: 2;
                position: relative;
                z-index: -1;
            }

 /* order */

*/ #leftSidebar {
                order: 1;
            }

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

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

            h1 {
                font-size: 25px;
            }

            strong {
                color: #ED64F5;
            }

.box {
                background-color: white;
                color: black;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: blue;
    }

/* width accounting for mobile */

 @media only screen and (max-width: 800px) {
    #flex {
    flex-wrap: wrap;
    }

aside {
    width: 100%;
    margin: 20px 0px 20px 0px;
    }

main {
    order: 1;
    width: 100%;
    margin: 20px 0px 20px 0px;
    }

#leftSidebar {
    order: 2;
    width: 100%;
    }

#navbar ul {
   flex-wrap: wrap;
    }
    

 }