/* ____________________________________________________________________________ General */

*, *:before, *:after {
    -webkit-box-sizing: border-box; 
       -moz-box-sizing: border-box; 
            box-sizing: border-box;
}

body {
    width: 100vw;
    
    margin:  0; 
    padding: 0;
    
    clear: left;
    
    font-family: 'SpiegelSansCd', sans-serif;
    font-size: 10px;
    letter-spacing: 0.02em;
    color: #fff;
    -webkit-font-smoothing: antialiased;
        background: #322f31;
    
}

.page {
    width:  100vw;
    height: 100vh;
    /*max-width: 1366px;*/
    
    overflow: hidden;
}

.background {
    width: 100vw;
    height: 100vh;
    /*max-width: 1366px;*/
    
    position: absolute;
    top: 0px;
    overflow: hidden;
}

.background video {
    width: auto;
    height: 100%;
    
    position: fixed;
    top:  50%;
    left: 50%;
    z-index: -100;
    
    background-image: url(../images/background.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

.margin-auto {
    margin: 0 auto;
}

.header, .header-special {
    position: absolute;
    bottom: 6vh;
    
    z-index: 108;
    
    width: 100vw;
    
    padding: 0px 20px;
    
    text-align: center;
}



/* _______________________________________________________________________________ Text */

.header {
    position: absolute;
    top: 22vh;
    
    width: 100vw;
    
    padding: 0px 10px;
    
    text-align: center;
}

h1 {
    margin: 0px;
    
    font-size: 14em;
    font-weight: normal;
    line-height: 0.8em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}



/* ____________________________________________________________________________ Kerning */

.kerning-k {
    margin-right: 0.02em;
}

.kerning-u {
    margin-left: 0.02em;
    margin-right: -0.02em;
}



/* __________________________________________________________________ Responsive Layout */

@media screen and (orientation: portrait) {

}

@media screen and (min-width: 1366px) and (orientation: landscape) {
    .header {
        /*width: 1366px;*/
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 9px;
    }
}

@media screen and (max-width: 440px) {
    body {
        font-size: 7px;
    }
    
    .header {
        top: 20vh;
    }
}

@media screen and (max-width: 390px) {
    body {
        font-size: 5px;
    }
    
    .header {
        top: 5em;
    }
}



/* _________________________________________________________________ Lorenz Kiefer 2017 */