.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) rotate(var(--r));
    opacity: 0;
  }
}


.skip_answer_button {
    background: #000;
    color: rgba(106, 0, 0, 0.94);
    border: 1px solid #f00;
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.skip_answer_button:hover {
    background: #f00;
    color: #000;
    text-shadow: 0 0 2px #f00;
}

