body {
    background-color: #ede8df;
}

@media screen and (min-width: 800px) {
    #center-wrapper {
        width: 1200;
        margin: 0 auto;
    }
}

#hero {
    margin-top: 2em;
    width: 100%;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

@media screen and (min-width: 800px) {
    #header-picture {
        width: 800px;
        border-radius: 0px;
    }
    #header-picture-wide {
        width: 1000px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 800px) {
    #header-picture,
    #header-picture-wide {
        width: 100%;
        border-radius: 5px;
    }
}

ul {
    list-style: none;
    padding-left: 0px;
    padding-right: 0px;
}

div.section {
    text-align: center;
    width: 100%;
}

div.section:nth-child(odd) {
    /* background: #fefefe; */
}

div.section:nth-child(even) {
    /* background: #eee; */
}

.borderfade a {
    position: relative;
    display: inline-block;
    outline: none;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    font-size: 1.35em;
    padding: 10px;
    color: slategray;
    font-weight: 700;
    text-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.borderfade a:before,
.borderfade a:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: tomato;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

.borderfade a:before {
    top: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

.borderfade a:after {
    bottom: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
}

.borderfade a:hover,
.borderfade a:focus {
    color: tomato;
}

.borderfade a:hover:before,
.borderfade a:hover:after,
.borderfade a:focus:before,
.borderfade a:focus:after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}