.par{
   
    font-weight: 700;
    font-size: 1.35rem;
    color: white;
    height:50px ;
    border-radius: 50%;

    animation-duration: 4s;
    animation-name: spin;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
}
.par{

}

@keyframes spin{
    0%{

    }
    50%{
        scale: 2;
        transform: rotate(0deg);
        border-radius: 0;


    }
    100%{
        transform: rotate(360deg);
        border-radius: 50%;
        scale: 2;
    }
}
.par{
    font-size:35px ;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}
#sy{
    background-image: url(images/image.avif);
    color: white;

}
.text-box {
    font-size: 35px;
    line-height: 20px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background:url(images/blue.avif);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;

}
@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}