@keyframes bounce{
    75% {
    transform: scaleY(1);
    }
    
    100% {
        top: 300px;
        transform: scaleY(0.7);
    }
}

@keyframes bouncer{
    75% {
    transform: scaleY(1);
    }
    
    100% {
        top: 250px;
        transform: scaleY(0.7);
    }
}

#circle {
    margin: 0 auto;
    padding: 0;
    background-color: #ff8bbe;
    background-image: radial-gradient(circle at 30% 25%, #ffe5f0, #ff8bbe 30%, #b72285);
    box-shadow: 0 5px 8px rgba(183, 34, 133, 0.4);
    border-radius: 50%;
    
    width: 250px;
    height: 250px;
    position: relative;
    top: 0;
    z-index: 2;

    animation: bounce 0.7s ease-in infinite alternate;
}

#circle::after {
    content: "";
    margin: 0 auto;
    padding: 0;
    background-color: #ff8bbe;
    background-image: radial-gradient(circle at 30% 75%, #ffe5f0, #ff8bbe 30%, #b72285);
    box-shadow: 0 5px 8px rgba(183, 34, 133, 0.4);
    border-radius: 50%;
    
    width: 250px;
    height: 250px;
    position: relative;
    top: 850px;
    z-index: 10;

    display: block;
    animation: bouncer 0.7s ease-in infinite alternate;

    mask-image: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
}