
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

.bling-text {
    font-family: 'Monoton', cursive;
    font-size: 48px;
    background: linear-gradient(90deg, #fff, #ccc, #fff);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: bling 2s linear infinite;
    text-shadow: 2px 2px 5px #000;
}

@keyframes bling {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
