body {
    font-family: Arial, sans-serif;
    background: #f1f1f1;
    margin: 0;
    padding: 40px 0;
}

.container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task {
    display: block;
    padding: 14px 18px;
    background: #e9f2ff;
    border-radius: 8px;
    text-decoration: none;
    color: #06498a;
    font-size: 18px;
    border: 1px solid #cddff7;
    transition: 0.2s;
}

.task:hover {
    background: #d2e7ff;
    border-color: #88b8f0;
    transform: translateX(5px);
}
