/* General Reset */
* {
    margin: 10px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the page is at least the height of the screen */
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    font-size: 1.5rem;
    text-align: center;
}

/* Main Content */
.container {
    flex-grow: 1; /* Pushes the footer down when there's not enough content */
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Sections */
.section {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
button {
    display: inline-block;
    padding: 12px 24px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 0.9rem;
}
