@keyframes score-change {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

.animate-score {
  animation: score-change 2s ease;
}
