
/* https://github.com/postcss/postcss-focus?tab=readme-ov-file */

*:focus-visible {
  outline: 0;
}
.button:hover {
  background: aliceblue;
}

*:focus-visible {
  outline: 0;
}
.button:hover {
    background: lime;
}
.button:focus-visible {
  background: aqua;
}


.a:hover, .b:hover {
  outline: 0;
}
.b:focus-visible {
  background: lightsalmon;
}

.a:hover, .b:hover, .a:focus-visible {
  outline: 0;
}
.b:focus-visible {
  background: red;
}