html, body {
    height: 100%; /* Make sure html and body take full viewport height */
    margin: 0;
}

body {
    display: flex; /* Enable Flexbox on the body */
    flex-direction: column; /* Stack children vertically */
}

main {
    flex-grow: 1; /* This makes the main content take up all available space */
}