/* Apply animation to card on hover */
.card-tile {
    transition: transform 0.1s ease-in-out;
  }
  
  .card-tile:hover {
    transform: scale(1.015);
  }