body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #f8f9fa; /* Changed to grey */
    text-align: center;
    padding: 1rem;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

footer {
    background-color: #e0e0e0; /* Light grey background for the footer */
    color: #333; /* Darker text color for better readability */
}

footer a {
    color: #0066cc; /* Link color, choose something that stands out on grey */
    text-decoration: none; /* Removes underline from links */
    padding: 0 10px; /* Adds some padding around the links */
}

footer a:hover {
    text-decoration: underline; /* Re-adds underline on hover for better user feedback */
}