html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 100px;
}
.footer {
    bottom: 0;
    position: absolute;
    /* Set the fixed height of the footer here */
    height: 70px;
    width: 100%;
}
.footer .container {
    background-color: #469105;
    padding:10px;
}

footer p {
    margin: 0;
}

.footer a {
    color:#A0D375;
    font-size: 8pt;
    padding: 2px 10px;
    text-transform: uppercase;

}
.footer a:hover {
    text-decoration: none;
    color:#FFF;

}


@media (max-width: 800px) {
    body {
        margin-bottom: 100px;
    }
    .footer {
        height: 100px;

    }
}


@media (max-width: 600px) {
    body {
        margin-bottom: 72px;
    }
    .footer {
        height: 72px;

    }
}

@media (max-width: 400px) {
    body {
        margin-bottom: 72px;
    }
    .footer {
        height: 72px;

    }
}