Question #229

Author: admin
tags: CSS   frontend (web)  
<h1 id="main-title">Page</h1>

<div class="game-card">
  <div class="card-header">
    <div class="card-title">
      Chess
    </div>
  </div>
</div>
:is(#main-title, .card-title) {
  color: pink;
}

.game-card {
  color: red;
}

.game-card .card-header .card-title {
  color: orange;
}

.card-title {
  color: blue;
}
What color is the word "Chess"?
pink
red
orange
blue
black (or other default color)
The specificity of the :is() pseudo-class is replaced by the specificity of its most specific argument.
Rate the difficulty of the question:
easyhard