@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
  }
  .animate-zoom-in {
    animation: zoomIn 10s ease-in-out forwards;
  }