body
{
    text-align:center;
    font-family: Goudy Old Style;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #d7c5b7;
}

li {
    float: center;
    position:sticky;
}
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
li a.active {
    background-color: white;
    color: #d7c5b7;
}
li a:hover {
    background-color: white;
}
#header {
    position: fixed;
    top: 0;
    width:100%;
    z-index: 999;
    background-color: white;
}
.header_spacing {
    position:relative;
    width: 100%;
    height: 220px;
}
.menu_items
{
    font-size: 18px;
}
.menu_items li
{
    display:inline-block;
    padding:none;
}
.menu_items li a 
{
    text-decoration: none;
    color:#5e1211;
}
.menu_items li a:hover
{
    color:#268733;
}
* {
    margin:0;
    padding:0;
}
@keyframes slide {
    0% {
        left: 0;
    }
    12.5% {
        left: 0;
    }
   25% {
        left: -100%;
    }
    37.5% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    62.5% {
        left: -200%;
    }
    80% {
        left: -300%;
    }
    92.5% {
        left: -300%;
    }
    100% {
        left: 0;
    }
}
#slider {
    overflow: hidden;
    position:relative;
}

#slider figure img {
    float: left;
    width: 25%;
}
#slider figure {
    position: relative;
    width: 400%;
    animation: slide;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}
#footer {
    position:relative;
    width: 100%;
    height: 64px;
    left:0;
    bottom:0;
    background-color: white;
    border-top: 3px solid #cf1c44;
}
#content {
    position:relative;
    width: 100%;
}
#content p {
    padding: 30px;
}