Learn how CSS selects HTML elements.
A selector tells CSS which HTML element to style.
p{
color:red;
}
This changes every paragraph to red.
.card{
background:blue;
color:white;
}
#title{
font-size:40px;
color:green;
}
*{
margin:0;
padding:0;
}
Which selector starts with a dot (.)?