.bucket-container {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.coin {
  position: absolute;
  font-size: 1.8rem;
  pointer-events: none;
  animation: floatUp 2s ease-out forwards;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), -120px);
  }
}