.dct-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    margin: 2rem 0;
}

.dct-task-link {
    font-size: 2.5rem;
    text-decoration: none;
    color: #0066cc;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.1);
}

.dct-task-link:hover {
    color: #004499;
    background: rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .dct-task-link {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
}