.text{
    text-align: center;
    margin-top: 100px;
}
.text h1{
    font-family: 'bely-display, sans-serif';
    font-size: 3rem;
    
}
.tasks-container {
    margin-top: 50px;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin-left: 400px;
}

.tasks-container h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}

.tasks-container p {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

}

.task-card {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px #555;
    color: #fff;
}

.task-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.task-card p {
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reward {
    background-color: #71A894;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.deadline {
    font-size: 12px;
    color: #888;
}

.view-more-btn {
    display: block;
    width: 20%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    margin-left: 400px;
}

.view-more-btn:hover {
    background-color: #333;
}