/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure footer sticks to bottom */
}

header {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

main {
    flex: 1; /* Allow main content to take up available space */
    padding: 20px;
    display: flex;
    justify-content: center; /* Center buttons horizontally */
    align-items: center;     /* Center buttons vertically */
}

.button-container {
     display: flex; 
     gap: 20px;   /* Space between buttons */
}


.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Blue button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}