.confite {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background-color: #f3c518;
  animation: confeti-fall 1s linear forwards;
}

@keyframes confeti-fall {
  from {
    transform: translateY(-150%);
  }
  to {
    transform: translateY(100%);
  }
}


#congratsMsg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  z-index: 1; /* Establecer una capa superior para que el mensaje aparezca por encima de los confites */
}