.text-popup {
    font-size: 0.2rem;
    animation: textPopup 1s;
    color: #ff4400;
    user-select: none;
    white-space: nowrap;
    position: absolute;
    z-index: 9999999;
}
@keyframes textPopup {
    0%, 100% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);    
    }
}