Learn CSS Variables by Building a City Skyline - Step 112

Tell us what’s happening:

I’m not sure why my code is not working.

.sky {
background: radial-gradient(
#ffcf33 0%,
#ffcf33 20%,
#ffff66 21%,
#bbeeff 100%
)

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.sky { 
  background: radial-gradient(
    #ffcf33 0%,
    #ffcf33 20%,
    #ffff66 21%,
    #bbeeff 100%
  )

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36

Challenge Information:

Learn CSS Variables by Building a City Skyline - Step 112

You need to close the section with a }

you forgot to add ; after this )