
    .existing-text {
        display: inline-block;
        animation: rotate 10s linear infinite;
    }

    .existing-text:hover {
        animation-play-state: paused;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

