I am working on Lesson 8 of the CSS section and cannot duplicate the results as shown in the video. The Lesson is Selectors Specificity. The text should change to pink, but it does not. The HTML code and CSS Code are included in the body of this question submission. Please Help if you can
Index.html
!DOCTYPE html>
DocumentHeading
CSS Code
body {
margin: 10px;
}
h1 {
color: dodgerblue;
}
.highlight {
color: deeppink;
}
Result