

.highlight {
  animation: highlight 2s ease-in-out;
}

@keyframes highlight {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(0, 0, 0, .4);
  }
  100% {
    background-color: transparent;
  }
}
