.line-wobble {
    --uib-size: 80px;
    --uib-speed: 1.55s;
    --uib-color: white;
    --uib-line-weight: 5px;
    position: absolute;
    bottom: 25%;
    left: 48%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--uib-line-weight);
    width: var(--uib-size);
    border-radius: calc(var(--uib-line-weight) / 2);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

   
   .line-wobble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--uib-color);
    opacity: 0.1;
   }
   
   .line-wobble::after {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: calc(var(--uib-line-weight) / 2);
    animation: wobble var(--uib-speed) ease-in-out infinite;
    transform: translateX(-90%);
    background-color: var(--uib-color);
   }
   
   @keyframes wobble {
    0%,
     100% {
     transform: translateX(-90%);
    }
   
    50% {
     transform: translateX(90%);
    }
   }


   .tip-text {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-style: italic;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    position: absolute;
    top: calc(75% + 1px); /* adjust the spacing as needed */
    left: 50%;
    transform: translateX(-50%);
}