CSS (Cascading Style Sheets) is the language we use to style a website. If a website were a house, CSS would be the paint, the carpets, and the furniture.
CSS works by selecting an element on your page and applying rules to it. A rule consists of a property (what you want to change) and a value (what you are changing it to).
In the example above, h1 is the selector. We are telling the browser to find all the large headings and make them gold!
This CSS rule is supposed to make paragraph text red, but the website is crashing! A very important piece of punctuation is missing. What is it?
Write the CSS code to change the background color of the entire website's body to black (#1a1a1a).