      .char-bounce {
            position: fixed;
		  bottom: 6vh;
            pointer-events: none;
            font-size: 20px;
            font-weight: bold;
            z-index: 1000;
            animation: bounceOut 0.4s ease-out forwards;
        }

        @keyframes bounceOut {
            0% {
                transform: scale(0.3) translateY(0px);
                opacity: 1;
            }
            25% {
                transform: scale(0.6) translateY(20px);
                opacity: 0.8;
            }			
            50% {
                transform: scale(1.1) translateY(-20px);
                opacity: 0.8;
            }
            75% {
                transform: scale(1.8) translateY(40px);
                opacity: 0.8;
            }
            100% {
                transform: scale(2.5) translateY(-40px);
                opacity: 0;
            }
        }