@import url('https://fonts.googleapis.com/css?family=Montserrat');
 
/* ======== MAINS */
html,
body {
    height: 100%;
    background-color: #fff;
}

body {
    color: #fff;
    text-align: center;
    background-image: url('../img/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.site-wrapper {
    display: table;
    width: 100%;
    height: 100%; 
    min-height: 100%;
}
.site-wrapper-inner {
    display: table-cell;
    vertical-align: top;
}

.cover-container {
    margin-right: auto;
    margin-left: auto;
}

.inner {
    padding: 30px;
}

.inner.cover img {
    width: 100%;
    margin-top: 20px;
}

.cover {
    padding: 0 20px;
}

/* ======== TYPOGRAPHY */
body {
    font-size: 17px;
    line-height: 1.5em;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0 auto;
}

/* ======== TYPOGRAPHY */

    body { font-size: 120%; }
    
    /* Start the vertical centering */
    .site-wrapper-inner {
        vertical-align: middle;
    }
    
    /* Handle the widths */
    .cover-container {
        width: 100%; /* Must be percentage or pixels for horizontal alignment */
    }
    
    .inner.cover img {
        margin-top: 0px;
    }



@media (min-width: 992px) {
    
    body { font-size: 140%; }
    
    .cover-container {
        width: 800px;
    }

}

/* ======== CARD */
.card 
{
    background-color: white;
    border: 1px solid #efefef;
    padding: 10px;
    border-radius: 7px;
    color: #333;
    box-shadow: 0px 0px 20px #333;
}

@media (min-width: 768px) { .card { padding: 20px; } }

.card h1
{
    margin: 0;
    padding: 0;
}

.card p
{
    margin: 15px 0;
    padding: 0;
}