/*   Notes - 
    Let's uncomment these one at a time and make some observations together

    1.we can target a particular tag
    2.
    3.

*/

 header {
    font-size: 22px;
    color: blue;
} 

 nav {
    color: cadetblue;
} 

 section {
    font-size: 22px;
    color: red;
} 

 div {
    color: aqua;
    font-size: 22px;
} 

 p {
    color: blueviolet;
    font-size: 30px;
} 

/* What happens if we change p again? */

 p {
    color: chartreuse;
    font-size: 40px;
} 

/* let's look at our page with the inspect tool in our browser - */