.shineTexts {
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0);
    background-size: 200% 100%;
    background-color: #6e7a6e;
    transition: 1.3s;
    cursor: default;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(
            -72deg, transparent 0, transparent 5%,
            rgba(0, 255, 251, 0.884),
            rgba(0, 255, 251, 0.986),
            transparent 10%,
            transparent 100%
    );
}

.shineTexts:hover {
    background-position: -140% 0;
}