html, body {
    width: 100%;
    height:100%;
}

body {
    display:flex;
    align-items:center;
    
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    background: url(../img/header-bg.jpg) no-repeat center center;
    background-attachment: relative;
    background-position: center center;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: white;
    text-shadow: 0 0 10px black;
}
h1 {
    font-size: 15vw;
    font-weight: 900;
}
h2 {
    font-size: 3.5vw;
    font-weight: 300;
    text-transform: uppercase;
}

.container {
    max-width: initial;
}
