* { box-sizing: border-box } 

html,body{
    margin: 0;
    padding: 0;
    height: 100%;
}
body{
    font-family: 'freight-sans-pro', "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    color: #333;
    padding: 20px;
}
.outer{
    text-align: center;
    height: 100%;
}
.outer:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; /* Adjusts for spacing */
}
.inner{
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 600px;
}
h1{
    margin: 0 auto 30px;
    width: 300px;
    height: 90px;
    background: url('/img/logo.png') center center no-repeat;
    background-size: 300px 90px;
    text-indent: -10000px;
}
@media all and (max-width: 600px) {
    h1{
        margin: 0 auto 20px;
        width: 150px;
        height: 45px;
        background-size: 150px 45px;
    }
}
h2{
    font-size: 54px;
    line-height: 70px;
    color: #333;
    font-weight: 500;
    margin: 0 0 20px
}
@media all and (max-width: 600px) {
    h2{
        font-size: 28px;
        line-height: 35px;
    }
}
h3{
    font-size: 26px;
    color: #999;
    font-weight: 300;
}
@media all and (max-width: 600px) {
    h3{
        font-size: 18px;
    }
}
a{
    color: #4ece6e;
    font-weight: 400;
}