/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #a8e063, #56ab2f); /* Gradient background for freshness */
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    color: #4CAF50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.task-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.task-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.task-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.task-card p {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    background-color: #4CAF50;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.task-card:hover {
    transform: translateY(-10px); /* Lift the card on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Add a deeper shadow */
}

.btn:hover {
    background-color: #45a049;
    transform: translateY(-3px); /* Slightly lift the button on hover */
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}

footer p {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        width: 90%;
        padding: 20px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    .task-options {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .task-card {
        width: 80%;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

