.content_paypal{
    padding-top: 5%;
    text-align: center;
}
.content_paypal a{
    color: var(--white-color);
} 

section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(black, var(--blue-color))
}

.rocket{
    pointer-events: none;
    position: absolute;
    top: 55%;
    left: 15%;
    width: 200px;
    height: 200px;
    text-align: center;
    font-size: 8em;
    line-height: 200px;
    /* background: red; */
    border-radius: 50%;
    box-shadow: inset 0 0 55px rgba(255, 255, 255, .1);
    animation: animate 5s linear infinite;
}

.rocket:before{
    content: ' ';
    position: absolute;
    top: 90px;
    left: 20px;
    width: 30%;
    height: 60%;
    border-radius: 50%;
    filter: blur(15px);
    background: yellow;
    transform: rotate(45deg);
    z-index: -1;
    animation: fuel 5s linear infinite;
}

@keyframes fuel {
    0%{
        background: #00abff;
        transform: rotate(45deg) scaleY(1);

    }
    25%{
        background: #ffff90
    }
    50%{
        background: #f100ff;
        transform: rotate(45deg) scaleY(2);
    }
    75%{
        background: #09dbff
    }
    100%{
        background: #00abff;
        transform: rotate(45deg) scaleY(1);
    }
}
@keyframes animate{
    0% {
        transform: translate(-20px, -20px)
    }
    25% {
        transform: translate(20px, 0px)
    }
    50% {
        transform: translate(-20px, 20px)
    }
    75% {
        transform: translate(20px, 0px)
    }
    100% {
        transform: translate(-20px, -20px)
    }
}
.rocket .fa{
    color: white
}



