Notorious Zet, вы можете исправить эту ошибку, присвоив элементу p класс, а затем используя псевдоселектор not
HTML
<p class = "notRed"> This is a p element </p>
<h1>This is a h1 element</h1>
CSS
p:not(notRed){
color: red /*This will apply to all p elements with the class of notRed*/
}