I noticed when I was working on the CSS unit that when you are making some classes (for example body) you do not use a period before:
Ex>
body{ background-color: brown;}
However when you use other titles for classes, you have to add the period:
ex:
.pink-text{color: pink;}
How do you know if you will need to add the period or not before the class?
If you refer to a tag, you write the name - “body” is a tag, as in <body> ... </body>
If you refer to a class, you write the period - “.pink-text” is a class, as in <p class="pink-text">...</p>
If you refer to an ID (comes later), you write a hastag - “#top-header” is an id, as in <div id="top-header">...</div>