html, body {
    margin: 0;
    padding: 0;
    background: #f6f6f6;
    font-family: 'Montserrat', sans-serif;
}

.banner {
    background: url("images/smoke.png") center repeat-x;
    height: 100px;
    border-bottom: 10px solid orangered;
}

.landing.banner {
    height: 150px;
}

div.dual-column {
    column-count: 2;
}

.banner div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing.banner div h1 {
    font-size: 6rem;
}

.banner div h1 {
    font-family: 'Monoton', cursive;
    color: white;
    font-size: 5rem;
    font-weight: normal;
    text-align: center;
}

.content {
    max-width: 1000px;
    margin: auto;
    padding: 1rem;
}

footer {
    background: #1f1f1f;
}

footer a {
    text-decoration: none;
    color: #efefef;
}

footer .content {
    display: flex;
    flex-wrap: wrap;
    color: #efefef;
}

footer .content div {
    flex-grow: 1;
    width: 50%;
}

footer .right_footer {
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .landing.banner div h1 {
        font-size: 4rem;
    }

    footer .content div {
        flex-grow: 1;
        width: 100%;
    }

    footer .right_footer {
        text-align: left;
    }
}