/* Define the zoom animation */
@keyframes zoom105 {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1.05);
    }
    40% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1.05);
    }
}

/* Apply the animation on hover */
.zoom105:hover {
    animation: zoom105 0.1s;
}
