html,body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    position: relative;
    background: #f7f7f7;
    margin: 0;
    padding: 71px 0 0;
    font-family: "roboto","helvetica neue",helvetica,arial,sans-serif !important;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    color: #777;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #2095f0;
}
a:hover {
    text-decoration: underline;
    color: #3890ff;
}
a.back {
    display: inline-block;
    background: none;
    border: 1px solid #8f8f8f;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 25px;
    padding: 14px 24px;
    text-transform: uppercase;
    font-size: 14px;
    color: #8f8f8f;
}
a.back:hover {
    background: #FF5C3E;
    border-color: #FF5C3E;
    text-decoration: none;
    color: #fff;
}

h1 {
    position: relative;
    margin: 0;
    padding: 0 0 60px 0;
    font-size: 200px;
    color: #333;
    cursor: default;
}
h1:after {
    content: '';
    position: absolute;
    top: 240px;
    left: calc(50% - 30px);
    background: #FF5C3E;
    height: 4px;
    width: 60px;
}

.msg {
    position: relative;
    top: 12%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}
.msg .msg-inner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px 40px;
    font-size: 1.1em;
}
.highlight {
    display: inline-block;
    background: rgba(235,107,72,.75);
    padding: 2px 5px;
    font-weight: 300;
    color: #fff;
}




/* MEDIA QUERIES 
-------------------------------------------------------------- */

@media only screen and (max-width: 479px) {
    
    body {
        padding-top: 40px;
    }
    h1 {
        font-size: 100px;
    }    
    h1:after {
        top: 140px;
    }
    .msg .msg-inner {
        font-size: 1em;
    }    

}    