body {
  user-select: none;
}

.flash {
  animation: flash-bg 0.1s ease-in-out;
}

@keyframes flash-bg {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }
  100% {
    background-color: transparent;
  }
}
