body,html {
    background: black;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 20px;
    font-family: "Josefin Slab";
}

/*
 * Highly inefficient hack to prevent touch scrolling issues
 */
*:not(html) {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.hidden {
    display: none;
}

/* Navigation bar */

#mobile-navigation {
    display: none;
}

#navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    background-color: white;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}

.nav-menu .nav-item {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background: white;
    padding: 25px 0px;
    text-align: center;
    font-size: 100%;
    font-weight: bolder;
    font-family: "Josefin Sans";
    text-transform: uppercase;
}

.nav-menu .nav-item:link,
.nav-menu .nav-item:visited,
.nav-menu .nav-item:hover,
.nav-menu .nav-item:active {
    text-decoration: none;
    color: black;
}

.nav-menu .nav-item:hover {
    background-color: #eee;
}

.nav-menu .nav-item:hover:active {
    background-color: #ddd;
}

.nav-menu .nav-item.active {
    color: #a00020;
}

#background {
    position: fixed;
    z-index: -1;
    top: 70px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-image: url("../images/background.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    -webkit-background-size: 100vw auto;
       -moz-background-size: 100vw auto;
         -o-background-size: 100vw auto;
            background-size: 100vw auto;
}

/* Main Content */

#content-scroller {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#content {
}

.section {
    background: white;
    width: 100%;
    padding: 80px 20px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.filler {
    min-height: 550px;
    width: 100%;
    background-color: white;
    position: relative;
}

.filler .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    background-position: center top;
}

.title {
    font-family: "Josefin Sans";
    font-size: 200%;
    font-weight: bold;
    color: #800020;
    padding: 5px;
}