.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #e6f2ff;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.main-title {
    font-size: 3em;
    text-align: center;
    margin-top: 20px;
    background: linear-gradient(90deg, #0044cc, #66a3ff);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

.subtitle {
    font-size: 1.8em;
    color: #003366;
    text-align: center;
    border-bottom: 4px solid #66a3ff;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 40px;
    font-weight: 500;
}

.task-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.task-item {
    background-color: #ffffff;
    margin: 12px 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.task-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 68, 204, 0.3);
}

.task-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #003366;
    font-size: 1.2em;
    text-align: center;
    font-weight: 600;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 10px;
}

.task-link:hover {
    background-color: #f0f7ff;
    color: #0044cc;
}

