/* .cir{
 
    border-radius: 200px;
    background-color: rgba(255, 255, 255, 0.582);
    position: absolute;
    left:22%;
    top:15%;
    width: 300px;
    height: 200px;
    filter:blur(20px);
    mix-blend-mode: color-dodge;
    animation: cir 10s linear infinite;
    transform-origin:  center;
}

@keyframes cir {
    0%{
      transform: scale(1,1);
      background-color: rgba(255, 255, 255, 0.582);
    }

   50%{
    background-color: rgba(255, 255, 255, 0);
    transform: scale(3,1);
       
    } 

    100%{
        transform: scale(1,1);
        background-color: rgba(255, 255, 255, 0.582);
    }
} */
