After animation?

So I have a card where if you hover then it scales up. If you remove hover it scales back to normal instantly. How do I make the scaling out as an animation as well?

.card:hover {
    transition: ease 1s;
}
Was this page helpful?