Alguém me ajuda nesse exercicio

Olá

Alguém me ajuda nesse exercício por favor já fiz de tudo e ainda não consegui.

Challenge: Make Motion More Natural Using a Bezier Curve

Link to the challenge:

Can you please share your code?

Esse é o link:

The link does not include your code. We need to see your work if you want help.

Esse é o meu trabalho.

.balls { border-radius: 50%; position: fixed; width: 50px; height: 50px; top: 60%; animation-name: jump; animation-duration: 2s; animation-iteration-count: infinite; } #red { background: red; left: 25%; animation-timing-function: linear; } #blue { background: blue; left: 50%; animation-timing-function: ease-out; } #green { background: green; left: 75%; animation-timing-function: cubic-bezier(0.3, 0.4, 0.5, 1.6); } @keyframes jump { 50% { top: 10%; } }

The instruction says to change the cubic bezier of id green to this:

cubic-bezier(0.311, 0.441, 0.444, 1.649)

I think you rounded it.

Muito Obrigada…