.masked-text {
    font-size: 25px;
    font-weight: bold;
    color: transparent;
    background-image: url('https://img1.picmix.com/output/stamp/normal/3/4/0/2/2682043_5d920.gif');
    background-size: 100%; /* Enlarged for smooth animation */
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 5s infinite alternate linear;
    font-family: 'p3';
}

  @font-face {
   font-family: 'p3';
   src: url('fonts/p3/p3.woff') format('woff');
   url('fonts/p3/p3.woff2') format('woff2');
  }


@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
