Spot the bug - #90: Card Hover Transition

Animation bug in plain sight.

.card {
  transition: transform 200 ease;
}
.card:hover {
  transform: translateY(-4px);
}

Reply with what is broken and how you would fix it.

What unit is 200? It should be a time value, but it is ambiguous right now.