/* General body styling to apply the Inter font and ensure the footer sticks to the bottom */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensures the main content area grows to fill available space */
main {
    flex-grow: 1;
}
