@charset "utf-8";

/* CSS Document */
body,
html {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.bg {
    background: #111 url("../img/img-hero.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 8px;
}

.bg:before {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.headers {
    padding: 20px;
    position: relative;
    text-align: center;
    color: white;
}

h1 {
    font: 35px normal Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    font-weight: normal;
}

h2 {
    font-weight: normal;
}

.summary {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 50px;
}

a:hover,
a:focus {
    background-color: #eee;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, .4);
}

.footer {
    margin-top: auto;
    background-color: black;
    color: white;
    text-align: center;
    padding: 16px 8px;
}

@media (min-width: 992px) {
    .bg {
        padding: 96px 200px;
    }
}
