/**
 * Layout Fix: Sticky Footer
 * Ensures footer remains at the bottom of the page on all screen sizes.
 */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* * This selector targets the element between your header and footer.
 * Update the class name to match your specific HTML structure.
 */
main, .container, #content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}