#audio-tooltip {
    animation: audio-tooltip-animation 5s linear infinite;
}

@keyframes audio-tooltip-animation {
    0%, 100% {
        bottom: 230px;
        font-size: 25px;
    }

    50% {
        bottom: 260px;
        font-size: 30px;
    }
}