html, body {
    height: 100%;
}

body {
    color: #383838;
    background: url('../images/bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.header {
    background-color: #0c7f85;
    padding: 20px 15px;
	text-align: center;
}

.wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

.container {
    height: 100%;
    background: rgba(0, 0, 0, 0.5);        
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.welcome {
    text-align: center;
}

.welcome h2 {
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    position: relative;
    margin-bottom: 45px;
}

.welcome h2:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    height: 2px;
    width: 78px;
    margin-left: -39px;
    background: #fff;
}

.welcome .text {
    font-style: italic;
    font-size: 15px;
    color: #fff;
    margin-bottom: 15%;
    font-weight: bold;
}

.footer {
    flex: 1;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    background-color: #323232;
}

.footer .wrapper {
    padding: 15px 0;
    background: url('../images/footer-logo.png') right center no-repeat;
}