body {
    background: linear-gradient(to right, #ff7e5f, #feb47b, #86a8e7, #7f7fd5);
    color: white;
    font-family: 'Arial', sans-serif;
}

.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
    background: #222;
    padding: 20px 0;
}
