 
 
@font-face {font-family: Alagard;  src: url('https://cedarcreature.neocities.org/Fonts/alagard.ttf')     }
                
@font-face {font-family: PIXEARG_;  src: url('https://cedarcreature.neocities.org/Fonts/PIXEARG_.TTF')     }
          
   h1, h2, h3 {text-align: center; font-family: "Alagard"}
p {text-align: center; font-family: "PIXEARG_"}
div {text-align: center;}


                
      /*color of links*/
          a {
  color: #F7F6ED;
  font-family: 'Alagard'}
      
            body {
            
                margin: 0;
                background-color: #628739;
                text-size-adjust: none;
              
                 
    cursor: url("https://cedarcreature.neocities.org/favicon3.ico"), default;
   



            }

        

            /* 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: 1000px;
                /* 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: auto;
                /* this centers the entire page */
            }


          

       
            #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: #628739;
                flex: 1;
                padding: 50px;
                order: 2;
                border: 20px solid #000000;
    
            }

        
            footer {
                background-color: #8C1128;
                /* background color for footer */
                width: 100%;
                height: 30px;
                padding-top:15px;
                text-align: center;
                color:#F0EEDF;
                font-family: "Alagard"
               
            }
                   
                  
          
            h1 {
                font-size: 65px; color: #F2C83F;
            }
            
             h2 {
                font-size: 50px;    color: #FFF8DC;
            }
            
             h3 {
                font-size: 40px;    color: #FFF8DC;
            }
            
            p{font-size:22px; color:#FFF8DC;}
            
            a{font-size: 22px}

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



            /* 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 (max-width: 900px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

            }