Web Components & Shadow DOM

What is the purpose of the :host selector in Shadow DOM CSS?
:host {
  display: block;
  border: 1px solid #ccc;
}

:host(:hover) {
  border-color: blue;
}

:host([disabled]) {
  opacity: 0.5;
}
Next Question (8/20)