#container_hand_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    margin: 0 auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
#cursorhand__svg {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    animation: slideDiagonal 1s infinite alternate; /* Animation properties */
}
.cursor-hand path {
    fill: #444; /* Change to your desired color */
}
@keyframes slideDiagonal {
    0% {
        transform: translate(-70px, 40px); /* Move text to the initial position */
    }
    100% {
        transform: translate(-50px, 50px); /* Move text diagonally */
    }
}
.paused {
    animation-play-state: paused;
}