.card{
    background-color: transparent;
    border-style: none;
    color: white;
    transition: transform 0.5s ease;
}
.card:hover{
    transform: translateY(-10px);
}
@media (max-width: 600px) {
    .card{
        transition: none;
    }
    .card:hover{
        transform: none;
    }
}