@keyframes bounceFont {
    0%, 100% { transform: scale(0.5); }
    50% { transform: scale(0.4); } /* Adjust size */
}
.animate-bounceFont {
    animation: bounceFont 1s ease-in-out infinite;
    display: inline-block; /* important for transform */
}
.emoji-container {
    width: 100%;
    height: auto;
}

.emoji-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* scales while preserving aspect ratio */
}