/* Ensure the page is the full height of the screen */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by the height of the footer */
    margin-bottom: 100px !important;
    background-color: #060606;
    color: white;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set a fixed height for the footer */
    height: 80px;
    background-color: #1a1a1a !important;
    border-top: 1px solid #444;
    line-height: 60px; /* Vertically center the text */
}

/* Ensure the main container doesn't get hidden behind the footer */
.container {
    padding-bottom: 20px;
}
