h1 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    text-align: center;
    font-size: 4.8em;
    color: #FFFFFF;
    margin: 0px;
    padding-top: 0.25em;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 2.5em;
    margin: 0px;
    padding-top: 0.25em;
    color: #FFFFFF;
}

#navcontainer {
    max-width: 100%;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    overflow: auto;
    box-shadow: 1px 1px 10px #000000;
}

#navcontainer ul {
    font-weight: 700;
    text-align: center;
    margin: 0px auto;
    padding: 0px;
}

#navcontainer ul li {
    list-style-type: none;
    width: 25%;
    float: left;
    background-color: #888844;
}

#navcontainer ul li a {
    outline: none;
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px #000000;
    padding: 10px;
    border-bottom: 3px solid #888844;
    transition: all 0.25s linear;
}

#navcontainer ul li a:hover {
    color: #FFFFFF;
    text-shadow: 1px 1px 1px #000000;
    border-bottom: 3px solid #FFFFFF;
}