.circle{
    height: 50px;
    width: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    animation: grow 3s forwards;
    position: absolute;
}

@keyframes grow{
    0%{
        transform: scale(1);
        opacity: 1;
        font-size: 10px;
    }
    100%{
        transform: scale(3);
        opacity:0 ;
        font-size: 40px;
    }
}