* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000016;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bola {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    animation-name: bola;
    animation-duration: .65s;
    animation-timing-function: cubic-bezier(0, 0, 0.25, 1.0);
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.fas {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 50px;
    color: #fff;
}

.fas:nth-child(2){
    display: none;
}

@keyframes bola {

    0% {
        bottom: 0;
    }

    100% {
        bottom: 70%;
    }

}