/* Selects any element that is NOT a paragraph */
:not(p) {
color: blue;
}
/*Below is a peice of code that allows us to set the cursor style for
a specific class (.seat) that does not have the class (.occupied)*/
.seat:not(.occupied):hover{
cursor: pointer;
transform: scale(1.2);
/*The code below allows us to set properties for a seat that is occupied;
This changes the curser on hover, indicating that the option is not available.*/
.seat:is(.occupied):hover{
cursor:not-allowed;
}