CSS @keyframes and animation Properties Work

Everything looks correct to me…what am I overlooking???

Your code so far


<style>
  div {
    height: 40px;
    width: 70%;
    background: black;
    margin: 50px auto;
    border-radius: 5px;
  }

  #rect {
  #anim {
    animation-name: rainbow;
    animation-duration: 4s;
  }
  @keyframes rainbow { 
    0% {
      background-color: blue;
    }
    50% {
      background-color: green;
    }
    100% {
      background-color: yellow;
    }
  }
  
  
  
  
</style>
<div id="rect"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.90 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-how-the-css-keyframes-and-animation-properties-work

Look at your selector:

#rect {
#anim {
  animation-name: rainbow;
  animation-duration: 4s;
}

You should only target the element with an id of rect. I guess you copied the example code and didn’t change it fully.