﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 18px;
    letter-spacing: 0.004em;
}

div.header {
    width: 100%;
    height: 70px;
    position: relative;
    z-index: 100;
    background-color: #fff;
    font-size: 18px;
    line-height: 20px;
}

    div.header img {
        float: left;
        max-width: 200px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 20px;
    }

div.footer {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    text-align: center;
    font-family: 'Tisa Pro Regular';
    letter-spacing: -0.01em;
    color: #333;
    font-size: 1.5em;
    line-height: 70px;
}

    div.footer a {
        font-family: 'Helvetica Black';
        text-transform: uppercase;
        font-weight: bold;
        color: #cf1e27;
        text-decoration: none;
        letter-spacing: -0.01em;
    }

div.content {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    height: calc(100% - 70px);
}

.center-text {
    font-family: 'Helvetica Black';
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 5em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.42857143;
}

    .center-text .animate {
        -webkit-animation-name: fadein;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
        -webkit-animation-delay: 1s;
        -moz-animation-name: fadein;
        -moz-animation-duration: 1s;
        -moz-animation-fill-mode: forwards;
        -moz-animation-delay: 1s;
        -o-animation: fadein 1s forwards;
        -o-animation-name: fadein;
        -o-animation-duration: 1s;
        -o-animation-fill-mode: forwards;
        -o-animation-delay: 1s;
        animation: fadein 1s forwards;
        animation-delay: 1s;
    }