Tell us what’s happening:
Describe your issue in detail here.
Anyone to help? I want to get past this issue and I think I did it right. It is the gradient syntax that requires me to input after the background-color which is something I did Your code so far
In the example, color1 is solid at the top, color2 is solid at the bottom, and in between it transitions evenly from one to the next. In .bb1a , add a background property below the background-color property. Set it as a gradient of type linear-gradient that uses --building-color1 as the first color and --window-color1 as the second.
It’s helpful to think of parentheses and brackets as always coming in pairs.
The linear-gradient property needs a pair of parentheses.
Within that, each variable you use also needs to have a pair of parentheses around the variable name (after the var keyword).
This is an important principle which will serve you well, especially when you get into JavaScript and other languages where a misplaced bracket could cause you no end of headaches!