/*Defines custom fonts to be used in the website*/
@font-face{
    font-family: "Majesti-Banner-Medium";
    src: url('../fonts/Majesti-Banner-Medium.otf') format('opentype');
    }

@font-face{
    font-family: "Majesti-Banner-Book";
    src: url('../fonts/Majesti-Banner-Book.otf') format('opentype');
}
h1{
    font: 40px "Majesti-Banner-Medium", Arial, Helvetica, Geneva, sans-serif;
}

h2{
    font: 40px "Majesti-Banner-Medium", Arial, Helvetica, Geneva, sans-serif;
}

h3{
    font: 40px "Majesti-Banner-Medium", Arial, Helvetica, Geneva, sans-serif;
}

p{
    font: 18px "Majesti-Banner-Book", Arial, Helvetica, Geneva, sans-serif;
}

/*Adds various parameters to the styling of the site such as positioning, link colors, asnd highlight coloring*/
 <style type="text/css">
    ul { list-style-type: none; }
    ul li { display: inline; padding: 10px;}
    ul{
        list-style-type: none;
        overflow: hidden;
        width: 380px;
        margin: 0px auto;
        }

        a.navbuttons:hover{
            color:#ef4e22;
            text-decoration:none;
            cursor:pointer;
        }
/*Defines the text color, text background, and how far the text background extends for heading 2*/    
    h2{
        display:table;
        background-color: #41393d;
        FONT COLOR="#ef4e22";
        }
/*Defines the text color, text background, and how far the text background extends for heading 1*/
    h1{
        display:table;
        background-color: #41393d;
        FONT COLOR="#ef4e22";
        }
/*Defines the text color, text background, and how far the text background extends for the body text*/
    p{
        display:table;
        margin: 0px auto 0px auto;
        background-color: #41393d;
        FONT COLOR="#ef4e22";
        }    

    </style>
