body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.container {
    display: flex;
    gap: 48px;
}

.card {
    width: 300px;
    height: 300px;
    background: #fff;
    border: 1.5px solid #bbb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #444;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.03);
    border-color: #007bff;
    color: #007bff;
} 