
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: translateScore;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  /* animation-fill-mode: forwards; */
}

@keyframes translateScore {
  0% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0) inset;
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2) inset;
  }

  100% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0) inset;
  }
}

.scoreZoomAndBlink {
  animation: scoreZoomAndBlink;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
}

@keyframes scoreZoomAndBlink {
  50% {
    opacity: 0;
    font-size: 1.5em;
  }
}
