---
id: 6169ab1aaeb4cd1174def700
title: Step 27
challengeType: 0
dashedName: step-27
---
# --description--
Because the animation is on an infinite loop and the start and end colors are not the same, the transition appears jerky when it switches back to yellow from red.
To start fixing this, remove the `background-color` from your `0%` selector.
# --hints--
Your `0%` selector should not have a `background-color` property.
```js
assert(!new __helpers.CSSHelp(document).getCSSRules('keyframes')?.[1]?.cssRules?.[0]?.style?.backgroundColor);
```
# --seed--
## --seed-contents--
```html