.circled-text span{
        border: 2px solid #A1CB00;
        border-radius: 50%;
        padding: 4px 8px;
        margin: 0 4px;
        animation: anim-text 0.5s linear;
      }
      
      .circled-text u{
        text-underline-offset: 4px !important;
        animation: anim-text 0.5s linear;
      }

      @keyframes anim-text {
        0% {
          clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
        }
        100% {
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
      }