/* --------------------------------------------------------------
CSS Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: border-box;     /* Safari/Chrome, other WebKit */
       -moz-box-sizing: border-box;     /* Firefox, other Gecko */
            box-sizing: border-box;     /* Opera/IE 8+ */
}


/* --------------------------------------------------------------
Basic Styles
-------------------------------------------------------------- */
html { 
    overflow-y: scroll;
}

body {
    background: #fff;
    font: 16px/28px 'Montserrat', 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #444;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

/* --------------------------------------------------------------
Page styles
-------------------------------------------------------------- */
.container {
    width: 540px;
    margin: 0 auto;
    padding-top: 180px;
}

/* Logo */
.logo {
    width: 230px;
    height: 85px;
    background: url('../img/logo.png');
    background-size: 230px 85px;
    margin: 0 auto;
}

.description {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #999;
    margin-top: 20px;
}

/* --------------------------------------------------------------
Mobile
-------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .container {
        width: 100%;
        padding: 0 30px 60px;
    }

    header {
        padding-top: 60px !important;
    }
}

/* Logo for Retina */
@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) { 
    .logo {
        background: url('../img/logo@2x.png');
        background-size: 230px 85px;
    }
}

