.custom-hover-effect { /* Initial styles */ transition: all 0.3s ease; } .custom-hover-effect:hover { /* Hover styles */ transform: scale(1.1); /* You can add more styles here, like color changes or box-shadow */ }