.no-drag {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.confetti-screen {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

/* Base confetti piece */

.confetti-piece {
  position: absolute;
  top: -10vh;
  width: 8px;
  height: 16px;
  border-radius: 2px;
  opacity: 0.9;
  animation: confetti-fall 3s linear;
}

/* Colors */

.confetti-piece:nth-child(5n + 1) {
  background: #ff5e5e;
}

.confetti-piece:nth-child(5n + 2) {
  background: #ffd15e;
}

.confetti-piece:nth-child(5n + 3) {
  background: #5eff7b;
}

.confetti-piece:nth-child(5n + 4) {
  background: #5ed4ff;
}

.confetti-piece:nth-child(5n + 5) {
  background: #c95eff;
}

/* Horizontal positions + varied times */

.confetti-piece:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 2.8s;
}

.confetti-piece:nth-child(2) {
  left: 20%;
  animation-delay: -0.3s;
  animation-duration: 3.2s;
}

.confetti-piece:nth-child(3) {
  left: 30%;
  animation-delay: -0.6s;
  animation-duration: 3s;
}

.confetti-piece:nth-child(4) {
  left: 40%;
  animation-delay: -1s;
  animation-duration: 2.7s;
}

.confetti-piece:nth-child(5) {
  left: 50%;
  animation-delay: -1.3s;
  animation-duration: 3.4s;
}

.confetti-piece:nth-child(6) {
  left: 60%;
  animation-delay: -0.8s;
  animation-duration: 2.9s;
}

.confetti-piece:nth-child(7) {
  left: 70%;
  animation-delay: -1.5s;
  animation-duration: 3.1s;
}

.confetti-piece:nth-child(8) {
  left: 80%;
  animation-delay: -0.2s;
  animation-duration: 2.6s;
}

.confetti-piece:nth-child(9) {
  left: 90%;
  animation-delay: -1.1s;
  animation-duration: 3.3s;
}

.confetti-piece:nth-child(10) {
  left: 15%;
  animation-delay: -1.7s;
  animation-duration: 3s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotateZ(0deg);
  }
  100% {
    transform: translateY(110vh) rotateZ(360deg);
  }
}

#left-img {
  height: 80px;
}

@media (max-width: 768px) {
  #left-img {
    height: 60px;
  }
}

#right-img {
  height: 60px;
}

@media (max-width: 768px) {
  #right-img {
    height: 35px;
    margin-right: 10px;
  }
}

.link-no-line {
  text-decoration: none;
  color: inherit;
}

