body {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 400;
    user-select: none;
    text-shadow: 0 0 15px #000;
}

#Logo {
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 9%;
}

.large-header {
    position: relative;
    width: 100%;
    background: #111;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
 
.splash .large-header {
    background-image: url("/images/splash-bg.jpg");
}
 
.main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #F9F1E9;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
 
.splash .main-title h1 {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
    font-weight: 200;
}
 
@media only screen and (max-width: 768px) {
    .splash .main-title {
       font-size: 3em;
    }
}