

          
   h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}

 
   @font-face {
                font-family: Alagard;  src: url('https://cedarcreature.neocities.org/Fonts/alagard.ttf')     }
                
                
      /*color of links below*/
          a {
  color: #F7F6ED;
  font-family: 'Alagard'
}
        
      
     

            body {
               H1 { font-family: 'Alagard';}
               H2, H3, p { font-family: 'Alagard';}
                margin: 0;
                background-color: #000000;
                
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 1000px;
                color: #fceaff;
            }

            * {
                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: 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 */
            }


            #header {
                width: 100%;
                background-color: #048F81;
                /* header color here! */
                height: 500px;
              
                background-size: 100%;
            }

       
            #navbar {
                height: 50px;
                background-color: #048F81;
                /* navbar color */
                width: 100%;
                font-family: "Alagard"
                
            }

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

            #navbar li {
                padding-top: 12px;
            }

            /* navigation links*/
            #navbar li a {
                color: #000000;
                /* navbar text color */
                font-weight: 800;
                font-size: 30px;
                text-decoration: none;
                /* this removes the underline */
            }

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

            #flex {
                display: flex;
            }


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

        
            footer {
                background-color: #8C1128;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                color:#F0EEDF;
                font-family: "Alagard"
            }
                   
          h1,             h2,             h3 {                 color: #F0EEDF;             }
          
            h1 {
                font-size: 60px;
            }
            
             h2 {
                font-size: 35px;
            }
            
             h3 {
                font-size: 30px;
            }
            
            p{font-size:25px; color:#F0EEDF;}
            
            a{font-size: 25px}

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


            /* CSS for extras */

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


            /* 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;
                }
            }