body {
    margin: 0;
    text-align: center;
    font-size: 150%;
  padding: 0;
    font-family: Verdana, Tahoma, sans-serif;
    background-image: radial-gradient(rgb(255, 255, 255), rgb(220, 168, 255));
    transition: background-image .5s;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 40px;
  overflow: hidden;

}

#header {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 125%;
}

button {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 80%;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    transition: background-color .5s;
}

button:hover {
    background-color: rgb(255, 243, 134);
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 80%;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

#q1 {
    display: block;
}

#q2 {
    display: none;
}

#q3 {
    display: none;
}

#q4 {
    display: none;
}

#q5 {
    display: none;
}

#q6 {
    display: none;
}

#q7 {
    display: none;
}

#q8 {
    display: none;
}

#q9 {
    display: none;
}

#q10 {
    display: none;
}

#scoreModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color:rgba(34, 0, 49, 0.548);
}
    
#modalContent {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 15px;
    max-width: 80%;
}

.confetti-container {
  user-select: none;
  pointer-events: none;
  z-index: 10;
  max-width: 100%;
  max-height: 1920px;
}

.confetti {
  position: fixed;
  left: 0;
  right: 0;
  display: none;
}

.square {
  width: 20px;
  height: 20px;
  background-color: var(--bg);
  margin: 0 0.2rem;
}

.rectangle {
  width: 15px;
  height: 25px;
  background-color: var(--bg);
  margin: 0 0.2rem;
}

.confetti i {
    animation-name: fall;
    animation-duration: calc(60s / var(--speed));
    animation-timing-function: linear;
}

@keyframes fall {
  0% {
    transform: translateY(-50vh);
  }

  100% {
    transform: translateY(100vh);
  }
}