.headingsContainer {
  width: 100%;
  height: 100%;
}
.headingsContainer .animationContainer {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
  padding: 0em 2em;
}
.headingsContainer .animationContainer .headingContainer {
  margin: 0 auto;
  justify-content: center;
  align-self: center;
}
.headingsContainer .animationContainer .headingContainer h2 {
  color: var(--white);
  font-size: 7rem;
  letter-spacing: 0.4rem;
  text-shadow: 2px 2px 1px var(--red);
  cursor: default;
  z-index: 2;
  opacity: 0;
}
.headingsContainer .animationContainer .headingContainer h2 span {
  color: var(--red);
  text-shadow: 2px 2px 1px var(--white), -2px -2px 1px var(--white);
}
@media screen and (max-width: 800px) {
  .headingsContainer .animationContainer .headingContainer h2 {
    font-size: 15vmin;
  }
}
.headingsContainer .animationContainer .headingContainer img {
  justify-items: center;
  align-self: center;
  transform: translateX(-4%);
  animation: arrowRightAnimation 5s infinite ease-in-out;
  z-index: -1;
  opacity: 0.6;
}
.headingsContainer .animationContainer .headingContainer .shortArrow {
  display: none;
}
@media screen and (max-width: 600px) {
  .headingsContainer .animationContainer .headingContainer .longArrow {
    display: none;
  }
  .headingsContainer .animationContainer .headingContainer .shortArrow {
    display: inline-block;
  }
}
.headingsContainer .animationContainer .headingContainer .hideHeaderContentLeft {
  animation: pushHeadingRight 2s ease-out forwards;
}
.headingsContainer .animationContainer .headingContainer .hideHeaderContentRight {
  animation: pushHeadingLeft 2s ease-out forwards;
  animation-delay: 0.7s;
}
@keyframes pushHeadingRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes pushHeadingLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes arrowRightAnimation {
  0% {
    transform: translateX(-3%);
    opacity: 0.6;
  }
  50% {
    transform: translateX(1.5%);
    opacity: 1;
  }
  100% {
    transform: translateX(-3%);
    opacity: 0.6;
  }
}
.headingsContainer .animationContainer .arrowContainer {
  z-index: -1;
}

.learnToEarnInfoContainer {
  min-height: 50vh;
  margin-top: 1em;
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.9) 0%, rgb(0, 0, 0) 100%);
  transition: 1.5s ease-in-out;
  overflow: hidden;
}
.learnToEarnInfoContainer .textContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  margin: 3em 0em 6em 0em;
  cursor: default;
}
.learnToEarnInfoContainer .textContainer p {
  max-width: 500px;
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 0em 1em;
}
.learnToEarnInfoContainer .textContainer p span {
  text-shadow: 1px 1px 1px var(--red), -1px -1px 1px var(--red);
}
.learnToEarnInfoContainer .textContainer .simpleText {
  text-shadow: 2px 2px 1px var(--red), -2px -2px 1px var(--red);
}
.learnToEarnInfoContainer .phoneContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  width: 100%;
  padding: 0em 2em;
}
.learnToEarnInfoContainer .phoneContainer .graphicDesc {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: default;
}
.learnToEarnInfoContainer .phoneContainer .graphicDesc img {
  max-height: 450px;
}
.learnToEarnInfoContainer .phoneContainer .graphicDesc p {
  color: var(--white);
  font-size: 2rem;
}
.learnToEarnInfoContainer .phoneContainer .newsletterPhoneDiv {
  align-items: flex-end;
  animation: newsletterCTA 3s ease-in-out infinite;
}
@keyframes newsletterCTA {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.learnToEarnInfoContainer .phoneContainer .clickToReadDiv {
  margin-top: 1em;
}
.learnToEarnInfoContainer .phoneContainer .clickToReadDiv .editionNumber {
  text-shadow: 2px 2px 1px var(--red), -2px -2px 1px var(--red);
}
.learnToEarnInfoContainer .phoneContainer .clickToReadDiv .clickToReadText span {
  text-shadow: 2px 2px 1px var(--red), -2px -2px 1px var(--red);
}
.learnToEarnInfoContainer .phoneContainer .clickToReadDiv .newsletterArrow {
  margin-left: -2em;
  opacity: 0;
  transition: 2s ease-out;
  transform: rotate(-90deg) scale(0) translateX(-3em);
  max-height: 17em;
  max-width: 17em;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .learnToEarnInfoContainer .phoneContainer .clickToReadDiv .newsletterArrow {
    transform: rotate(0deg) scale(0.8) translateX(0em);
    opacity: 1;
  }
}
.learnToEarnInfoContainer .phoneContainer .benefitsTextDiv {
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.learnToEarnInfoContainer .phoneContainer .benefitsTextDiv .benefitsText {
  text-align: left;
  min-width: 10em;
  margin-right: -1em;
  height: fit-content;
  background: var(--semiTransparentDarkgrey);
  border-radius: 20px;
  padding: 1em;
  padding-right: 5em;
  transform: translateX(8em);
  opacity: 0;
  transition: 2s ease-out;
  border: 1px solid var(--white);
  margin-bottom: 0.6em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.learnToEarnInfoContainer .phoneContainer .benefitsTextDiv .benefitsText p {
  font-size: 1.2rem;
  min-width: 6em;
}
.learnToEarnInfoContainer .phoneContainer .benefitsPhoneDiv {
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .learnToEarnInfoContainer .phoneContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .learnToEarnInfoContainer .phoneContainer .graphicDesc p {
    font-size: 1rem;
  }
  .learnToEarnInfoContainer .phoneContainer .graphicDesc .benefitsText {
    min-width: 12em;
    width: 80%;
    margin-right: -0.5em;
    height: fit-content;
    background: var(--semiTransparentDarkgrey);
    border-radius: 20px;
    padding: 1em;
    padding-right: 2em;
    margin-bottom: 1.5em;
  }
  .learnToEarnInfoContainer .phoneContainer .graphicDesc .benefitsText p {
    font-size: 1rem;
  }
}
.learnToEarnInfoContainer .startButtonContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5em 0em;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv {
  overflow: hidden;
  transform: scale(1.5);
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button {
  min-width: 130px;
  min-height: 40px;
  border-radius: 20px;
  border: 3px solid var(--white);
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  font-family: var(--paragraphFontFamily);
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button span {
  position: absolute;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button .display {
  opacity: 1;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button .onHover {
  color: var(--red);
  transform: translateY(100%);
  opacity: 0;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button:hover .display {
  transform: translateY(-100%);
  opacity: 0;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button:hover .onHover {
  transform: translate(0%);
  opacity: 1;
}
.learnToEarnInfoContainer .startButtonContainer .startButtonDiv button:hover {
  background: var(--white);
}
.learnToEarnInfoContainer .archivedNewslettersContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--white);
  flex-direction: column;
  padding: 2em;
  gap: 1em;
}
.learnToEarnInfoContainer .archivedNewslettersContainer h3 {
  text-align: center;
  font-size: 2rem;
}
.learnToEarnInfoContainer .archivedNewslettersContainer p {
  text-align: center;
}
.learnToEarnInfoContainer .archivedNewslettersContainer a {
  color: var(--whhite);
  text-decoration: underline;
  text-shadow: 2px 2px 1px var(--red), -2px -2px 1px var(--red);
}

.quizQuestionContainer {
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.9) 0%, rgb(0, 0, 0) 100%);
  min-height: 0vh;
  height: 0em;
  transition: 1.2s ease-out;
  overflow: hidden;
}
.quizQuestionContainer .editionTextDiv {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  opacity: 0;
  transition: 1.3s ease-out;
  transform: translateY(-5em);
}
.quizQuestionContainer .editionTextDiv p {
  cursor: default;
}
.quizQuestionContainer .editionTextDiv .editionText {
  color: var(--white);
  font-family: var(--paragraphFontFamily);
  font-size: 2rem;
  position: relative;
  width: fit-content;
}
.quizQuestionContainer .editionTextDiv .goodLuck {
  font-size: 1.2rem;
  color: var(--white);
  font-family: var(--paragraphFontFamily);
}
@media screen and (max-width: 550px) {
  .quizQuestionContainer .editionTextDiv .goodLuck {
    font-size: 1rem;
  }
}
.quizQuestionContainer .quizQuestionDiv {
  height: 100%;
  width: 100%;
  transition: 1.2s ease-out;
  transform: translateY(20em);
  opacity: 0;
  display: flex;
  justify-content: center;
}
.quizQuestionContainer .quizQuestionDiv form {
  width: 85%;
  max-width: 800px;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  margin: 3em 0.5em;
  padding: 1em;
}
.quizQuestionContainer .quizQuestionDiv form .progressbarContainer {
  content: "";
  height: 5px;
  border-radius: 20px;
  width: 100%;
  position: relative;
  overflow-X: hidden;
}
.quizQuestionContainer .quizQuestionDiv form .progressbarContainer .unfinishedProgress {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: grey;
  border-radius: 20px;
}
.quizQuestionContainer .quizQuestionDiv form .progressbarContainer .finishedProgress {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(222, 2, 2);
  height: 100%;
  width: 0%;
  border-radius: 50px;
  transition: 0.5s ease-in-out;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation {
  display: flex;
  justify-content: row;
  width: 100%;
  background-image: url(/PerformanteLogo.f3be1eb1.png);
  position: relative;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .backgroundImage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  width: 100%;
  display: flex;
  justify-content: center;
  filter: blur(7px);
  z-index: -1;
  margin-top: 1rem;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .backgroundImage img {
  height: 100%;
  object-fit: contain;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation i {
  color: var(--white);
  font-size: 2rem;
  align-self: center;
  margin: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation i:hover {
  transform: scale(1.1);
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .fa-arrow-left {
  opacity: 0;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .fa-arrow-left:hover {
  transform: translateX(-5px);
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .fa-arrow-right:hover {
  transform: translateX(5px);
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions {
  display: flex;
  flex-direction: row;
  padding: 1em;
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions::-webkit-scrollbar {
  display: none;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer {
  scroll-behavior: smooth;
  scroll-snap-align: center;
  min-width: 90%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  transition: 0.75s ease-out;
  border-radius: 20px;
  margin: 1em;
  padding: 2em;
  justify-content: center;
  background-image: var(--semiTransparentDarkgrey);
  border: 1px solid var(--white);
  box-shadow: 0px 0px 20px 5px var(--black), inset 0px 0px 20px 5px var(--black);
  align-items: center;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer label {
  color: var(--white);
  font-family: var(--paragraphFontFamily);
  font-weight: bolder;
  max-width: 600px;
  min-height: 50px;
  opacity: 0;
  transform: translateY(1em);
  transition: 0.25s ease-out;
  text-shadow: 1px 1px 0px var(--black);
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer input {
  margin-bottom: 3em;
  font-family: var(--paragraphFontFamily);
  min-height: 45px;
  max-width: 600px;
  width: 80%;
}
.quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer textarea {
  min-height: 45px;
  max-width: 600px;
  width: 80%;
  resize: vertical;
  padding: 10px;
  opacity: 0;
  transform: translateY(1em);
  transition: 0.5s ease-out;
  border-radius: 15px;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv {
  overflow: hidden;
  opacity: 0;
  transform: translateY(1em);
  transition: 1s ease-out;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton {
  margin: 0 auto;
  max-width: 750px;
  width: 7rem;
  min-width: 150px;
  min-height: 40px;
  border-radius: 20px;
  border: 3px solid var(--white);
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  font-family: var(--paragraphFontFamily);
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton span {
  position: absolute;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton .display {
  opacity: 1;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton .onHover {
  color: var(--red);
  transform: translateY(100%);
  opacity: 0;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton:hover .display {
  transform: translateY(-100%);
  opacity: 0;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton:hover .onHover {
  transform: translate(0%);
  opacity: 1;
}
.quizQuestionContainer .quizQuestionDiv form .submitButtonDiv .submitFormButton:hover {
  background: var(--white);
}
@media screen and (max-width: 900px) {
  .quizQuestionContainer .quizQuestionDiv form {
    width: 95%;
    padding: 1em 0.25em;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation i {
    margin: 0em;
    padding: 5px;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation .backgroundImage img {
      margin-top: 0rem;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions {
    padding: 0em;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer {
    padding: 0.7em;
    margin: 0.5em;
    padding-top: 4rem;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer label {
    text-align: center;
  }
  .quizQuestionContainer .quizQuestionDiv form .quizNavigation .injectedQuestions .questionContainer textarea {
    width: 95%;
  }
}

.completionPageContainer {
  display: none;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  width: 100%;
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.9) 0%, rgb(0, 0, 0) 100%);
}
.completionPageContainer .quizCompletionText {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 2em;
  transform: translateY(5em);
  opacity: 0;
  transition: 1.2s ease-out;
  cursor: default;
}
.completionPageContainer .quizCompletionText .earnedText {
  color: var(--white);
  width: 100%;
  text-align: center;
  font-size: 8vmin;
}
.completionPageContainer .quizCompletionText .earnedText span {
  text-shadow: 2px 2px 1px var(--red), -2px -2px 1px var(--red);
}
.completionPageContainer .quizCompletionText p {
  color: white;
  font-size: 1.3rem;
  text-align: center;
  max-width: 500px;
  margin: 2em;
}
.completionPageContainer .fireworkContainer {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
}
.completionPageContainer .pyro > .before, .completionPageContainer .pyro > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
  -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
}
.completionPageContainer .pyro > .after {
  -moz-animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  -o-animation-delay: 1.25s, 1.25s, 1.25s;
  -ms-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -moz-animation-duration: 1.25s, 1.25s, 6.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  -o-animation-duration: 1.25s, 1.25s, 6.25s;
  -ms-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s;
}
@-webkit-keyframes bang {
  to {
    box-shadow: 164px -401.6666666667px hsl(294deg, 100%, 50%), 134px -310.6666666667px hsl(167deg, 100%, 50%), -140px -47.6666666667px hsl(252deg, 100%, 50%), -172px -250.6666666667px hsl(289deg, 100%, 50%), 219px -346.6666666667px hsl(72deg, 100%, 50%), 69px -82.6666666667px hsl(248deg, 100%, 50%), -165px -215.6666666667px hsl(272deg, 100%, 50%), 226px -261.6666666667px hsl(75deg, 100%, 50%), 197px -352.6666666667px hsl(129deg, 100%, 50%), 228px -121.6666666667px hsl(167deg, 100%, 50%), -133px -156.6666666667px hsl(202deg, 100%, 50%), -65px -117.6666666667px hsl(127deg, 100%, 50%), -3px 27.3333333333px hsl(201deg, 100%, 50%), -192px -151.6666666667px hsl(13deg, 100%, 50%), 98px -3.6666666667px hsl(58deg, 100%, 50%), 119px -312.6666666667px hsl(29deg, 100%, 50%), -146px -373.6666666667px hsl(286deg, 100%, 50%), 91px -68.6666666667px hsl(87deg, 100%, 50%), 101px -236.6666666667px hsl(291deg, 100%, 50%), 64px 79.3333333333px hsl(126deg, 100%, 50%), 37px -186.6666666667px hsl(209deg, 100%, 50%), 16px -329.6666666667px hsl(222deg, 100%, 50%), -65px -212.6666666667px hsl(199deg, 100%, 50%), -158px -201.6666666667px hsl(12deg, 100%, 50%), -65px -238.6666666667px hsl(254deg, 100%, 50%), -213px -283.6666666667px hsl(220deg, 100%, 50%), -238px -16.6666666667px hsl(296deg, 100%, 50%), 16px -10.6666666667px hsl(92deg, 100%, 50%), 68px -263.6666666667px hsl(114deg, 100%, 50%), -12px -220.6666666667px hsl(157deg, 100%, 50%), 40px 36.3333333333px hsl(326deg, 100%, 50%), 166px -184.6666666667px hsl(187deg, 100%, 50%), 119px -10.6666666667px hsl(311deg, 100%, 50%), 58px 59.3333333333px hsl(301deg, 100%, 50%), -34px -266.6666666667px hsl(72deg, 100%, 50%), -69px -35.6666666667px hsl(265deg, 100%, 50%), -90px -253.6666666667px hsl(195deg, 100%, 50%), 141px -137.6666666667px hsl(25deg, 100%, 50%), 31px -196.6666666667px hsl(140deg, 100%, 50%), 54px -187.6666666667px hsl(112deg, 100%, 50%), -180px -107.6666666667px hsl(180deg, 100%, 50%), -33px -363.6666666667px hsl(72deg, 100%, 50%), 64px -323.6666666667px hsl(353deg, 100%, 50%), -208px -69.6666666667px hsl(126deg, 100%, 50%), 54px 2.3333333333px hsl(188deg, 100%, 50%), -161px -147.6666666667px hsl(343deg, 100%, 50%), -223px 15.3333333333px hsl(110deg, 100%, 50%), 247px -42.6666666667px hsl(306deg, 100%, 50%), -10px 33.3333333333px hsl(280deg, 100%, 50%), -190px 40.3333333333px hsl(272deg, 100%, 50%), -97px -78.6666666667px hsl(214deg, 100%, 50%);
  }
}
@-moz-keyframes bang {
  to {
    box-shadow: 164px -401.6666666667px hsl(294deg, 100%, 50%), 134px -310.6666666667px hsl(167deg, 100%, 50%), -140px -47.6666666667px hsl(252deg, 100%, 50%), -172px -250.6666666667px hsl(289deg, 100%, 50%), 219px -346.6666666667px hsl(72deg, 100%, 50%), 69px -82.6666666667px hsl(248deg, 100%, 50%), -165px -215.6666666667px hsl(272deg, 100%, 50%), 226px -261.6666666667px hsl(75deg, 100%, 50%), 197px -352.6666666667px hsl(129deg, 100%, 50%), 228px -121.6666666667px hsl(167deg, 100%, 50%), -133px -156.6666666667px hsl(202deg, 100%, 50%), -65px -117.6666666667px hsl(127deg, 100%, 50%), -3px 27.3333333333px hsl(201deg, 100%, 50%), -192px -151.6666666667px hsl(13deg, 100%, 50%), 98px -3.6666666667px hsl(58deg, 100%, 50%), 119px -312.6666666667px hsl(29deg, 100%, 50%), -146px -373.6666666667px hsl(286deg, 100%, 50%), 91px -68.6666666667px hsl(87deg, 100%, 50%), 101px -236.6666666667px hsl(291deg, 100%, 50%), 64px 79.3333333333px hsl(126deg, 100%, 50%), 37px -186.6666666667px hsl(209deg, 100%, 50%), 16px -329.6666666667px hsl(222deg, 100%, 50%), -65px -212.6666666667px hsl(199deg, 100%, 50%), -158px -201.6666666667px hsl(12deg, 100%, 50%), -65px -238.6666666667px hsl(254deg, 100%, 50%), -213px -283.6666666667px hsl(220deg, 100%, 50%), -238px -16.6666666667px hsl(296deg, 100%, 50%), 16px -10.6666666667px hsl(92deg, 100%, 50%), 68px -263.6666666667px hsl(114deg, 100%, 50%), -12px -220.6666666667px hsl(157deg, 100%, 50%), 40px 36.3333333333px hsl(326deg, 100%, 50%), 166px -184.6666666667px hsl(187deg, 100%, 50%), 119px -10.6666666667px hsl(311deg, 100%, 50%), 58px 59.3333333333px hsl(301deg, 100%, 50%), -34px -266.6666666667px hsl(72deg, 100%, 50%), -69px -35.6666666667px hsl(265deg, 100%, 50%), -90px -253.6666666667px hsl(195deg, 100%, 50%), 141px -137.6666666667px hsl(25deg, 100%, 50%), 31px -196.6666666667px hsl(140deg, 100%, 50%), 54px -187.6666666667px hsl(112deg, 100%, 50%), -180px -107.6666666667px hsl(180deg, 100%, 50%), -33px -363.6666666667px hsl(72deg, 100%, 50%), 64px -323.6666666667px hsl(353deg, 100%, 50%), -208px -69.6666666667px hsl(126deg, 100%, 50%), 54px 2.3333333333px hsl(188deg, 100%, 50%), -161px -147.6666666667px hsl(343deg, 100%, 50%), -223px 15.3333333333px hsl(110deg, 100%, 50%), 247px -42.6666666667px hsl(306deg, 100%, 50%), -10px 33.3333333333px hsl(280deg, 100%, 50%), -190px 40.3333333333px hsl(272deg, 100%, 50%), -97px -78.6666666667px hsl(214deg, 100%, 50%);
  }
}
@-o-keyframes bang {
  to {
    box-shadow: 164px -401.6666666667px hsl(294deg, 100%, 50%), 134px -310.6666666667px hsl(167deg, 100%, 50%), -140px -47.6666666667px hsl(252deg, 100%, 50%), -172px -250.6666666667px hsl(289deg, 100%, 50%), 219px -346.6666666667px hsl(72deg, 100%, 50%), 69px -82.6666666667px hsl(248deg, 100%, 50%), -165px -215.6666666667px hsl(272deg, 100%, 50%), 226px -261.6666666667px hsl(75deg, 100%, 50%), 197px -352.6666666667px hsl(129deg, 100%, 50%), 228px -121.6666666667px hsl(167deg, 100%, 50%), -133px -156.6666666667px hsl(202deg, 100%, 50%), -65px -117.6666666667px hsl(127deg, 100%, 50%), -3px 27.3333333333px hsl(201deg, 100%, 50%), -192px -151.6666666667px hsl(13deg, 100%, 50%), 98px -3.6666666667px hsl(58deg, 100%, 50%), 119px -312.6666666667px hsl(29deg, 100%, 50%), -146px -373.6666666667px hsl(286deg, 100%, 50%), 91px -68.6666666667px hsl(87deg, 100%, 50%), 101px -236.6666666667px hsl(291deg, 100%, 50%), 64px 79.3333333333px hsl(126deg, 100%, 50%), 37px -186.6666666667px hsl(209deg, 100%, 50%), 16px -329.6666666667px hsl(222deg, 100%, 50%), -65px -212.6666666667px hsl(199deg, 100%, 50%), -158px -201.6666666667px hsl(12deg, 100%, 50%), -65px -238.6666666667px hsl(254deg, 100%, 50%), -213px -283.6666666667px hsl(220deg, 100%, 50%), -238px -16.6666666667px hsl(296deg, 100%, 50%), 16px -10.6666666667px hsl(92deg, 100%, 50%), 68px -263.6666666667px hsl(114deg, 100%, 50%), -12px -220.6666666667px hsl(157deg, 100%, 50%), 40px 36.3333333333px hsl(326deg, 100%, 50%), 166px -184.6666666667px hsl(187deg, 100%, 50%), 119px -10.6666666667px hsl(311deg, 100%, 50%), 58px 59.3333333333px hsl(301deg, 100%, 50%), -34px -266.6666666667px hsl(72deg, 100%, 50%), -69px -35.6666666667px hsl(265deg, 100%, 50%), -90px -253.6666666667px hsl(195deg, 100%, 50%), 141px -137.6666666667px hsl(25deg, 100%, 50%), 31px -196.6666666667px hsl(140deg, 100%, 50%), 54px -187.6666666667px hsl(112deg, 100%, 50%), -180px -107.6666666667px hsl(180deg, 100%, 50%), -33px -363.6666666667px hsl(72deg, 100%, 50%), 64px -323.6666666667px hsl(353deg, 100%, 50%), -208px -69.6666666667px hsl(126deg, 100%, 50%), 54px 2.3333333333px hsl(188deg, 100%, 50%), -161px -147.6666666667px hsl(343deg, 100%, 50%), -223px 15.3333333333px hsl(110deg, 100%, 50%), 247px -42.6666666667px hsl(306deg, 100%, 50%), -10px 33.3333333333px hsl(280deg, 100%, 50%), -190px 40.3333333333px hsl(272deg, 100%, 50%), -97px -78.6666666667px hsl(214deg, 100%, 50%);
  }
}
@-ms-keyframes bang {
  to {
    box-shadow: 164px -401.6666666667px hsl(294deg, 100%, 50%), 134px -310.6666666667px hsl(167deg, 100%, 50%), -140px -47.6666666667px hsl(252deg, 100%, 50%), -172px -250.6666666667px hsl(289deg, 100%, 50%), 219px -346.6666666667px hsl(72deg, 100%, 50%), 69px -82.6666666667px hsl(248deg, 100%, 50%), -165px -215.6666666667px hsl(272deg, 100%, 50%), 226px -261.6666666667px hsl(75deg, 100%, 50%), 197px -352.6666666667px hsl(129deg, 100%, 50%), 228px -121.6666666667px hsl(167deg, 100%, 50%), -133px -156.6666666667px hsl(202deg, 100%, 50%), -65px -117.6666666667px hsl(127deg, 100%, 50%), -3px 27.3333333333px hsl(201deg, 100%, 50%), -192px -151.6666666667px hsl(13deg, 100%, 50%), 98px -3.6666666667px hsl(58deg, 100%, 50%), 119px -312.6666666667px hsl(29deg, 100%, 50%), -146px -373.6666666667px hsl(286deg, 100%, 50%), 91px -68.6666666667px hsl(87deg, 100%, 50%), 101px -236.6666666667px hsl(291deg, 100%, 50%), 64px 79.3333333333px hsl(126deg, 100%, 50%), 37px -186.6666666667px hsl(209deg, 100%, 50%), 16px -329.6666666667px hsl(222deg, 100%, 50%), -65px -212.6666666667px hsl(199deg, 100%, 50%), -158px -201.6666666667px hsl(12deg, 100%, 50%), -65px -238.6666666667px hsl(254deg, 100%, 50%), -213px -283.6666666667px hsl(220deg, 100%, 50%), -238px -16.6666666667px hsl(296deg, 100%, 50%), 16px -10.6666666667px hsl(92deg, 100%, 50%), 68px -263.6666666667px hsl(114deg, 100%, 50%), -12px -220.6666666667px hsl(157deg, 100%, 50%), 40px 36.3333333333px hsl(326deg, 100%, 50%), 166px -184.6666666667px hsl(187deg, 100%, 50%), 119px -10.6666666667px hsl(311deg, 100%, 50%), 58px 59.3333333333px hsl(301deg, 100%, 50%), -34px -266.6666666667px hsl(72deg, 100%, 50%), -69px -35.6666666667px hsl(265deg, 100%, 50%), -90px -253.6666666667px hsl(195deg, 100%, 50%), 141px -137.6666666667px hsl(25deg, 100%, 50%), 31px -196.6666666667px hsl(140deg, 100%, 50%), 54px -187.6666666667px hsl(112deg, 100%, 50%), -180px -107.6666666667px hsl(180deg, 100%, 50%), -33px -363.6666666667px hsl(72deg, 100%, 50%), 64px -323.6666666667px hsl(353deg, 100%, 50%), -208px -69.6666666667px hsl(126deg, 100%, 50%), 54px 2.3333333333px hsl(188deg, 100%, 50%), -161px -147.6666666667px hsl(343deg, 100%, 50%), -223px 15.3333333333px hsl(110deg, 100%, 50%), 247px -42.6666666667px hsl(306deg, 100%, 50%), -10px 33.3333333333px hsl(280deg, 100%, 50%), -190px 40.3333333333px hsl(272deg, 100%, 50%), -97px -78.6666666667px hsl(214deg, 100%, 50%);
  }
}
@keyframes bang {
  to {
    box-shadow: 164px -401.6666666667px hsl(294deg, 100%, 50%), 134px -310.6666666667px hsl(167deg, 100%, 50%), -140px -47.6666666667px hsl(252deg, 100%, 50%), -172px -250.6666666667px hsl(289deg, 100%, 50%), 219px -346.6666666667px hsl(72deg, 100%, 50%), 69px -82.6666666667px hsl(248deg, 100%, 50%), -165px -215.6666666667px hsl(272deg, 100%, 50%), 226px -261.6666666667px hsl(75deg, 100%, 50%), 197px -352.6666666667px hsl(129deg, 100%, 50%), 228px -121.6666666667px hsl(167deg, 100%, 50%), -133px -156.6666666667px hsl(202deg, 100%, 50%), -65px -117.6666666667px hsl(127deg, 100%, 50%), -3px 27.3333333333px hsl(201deg, 100%, 50%), -192px -151.6666666667px hsl(13deg, 100%, 50%), 98px -3.6666666667px hsl(58deg, 100%, 50%), 119px -312.6666666667px hsl(29deg, 100%, 50%), -146px -373.6666666667px hsl(286deg, 100%, 50%), 91px -68.6666666667px hsl(87deg, 100%, 50%), 101px -236.6666666667px hsl(291deg, 100%, 50%), 64px 79.3333333333px hsl(126deg, 100%, 50%), 37px -186.6666666667px hsl(209deg, 100%, 50%), 16px -329.6666666667px hsl(222deg, 100%, 50%), -65px -212.6666666667px hsl(199deg, 100%, 50%), -158px -201.6666666667px hsl(12deg, 100%, 50%), -65px -238.6666666667px hsl(254deg, 100%, 50%), -213px -283.6666666667px hsl(220deg, 100%, 50%), -238px -16.6666666667px hsl(296deg, 100%, 50%), 16px -10.6666666667px hsl(92deg, 100%, 50%), 68px -263.6666666667px hsl(114deg, 100%, 50%), -12px -220.6666666667px hsl(157deg, 100%, 50%), 40px 36.3333333333px hsl(326deg, 100%, 50%), 166px -184.6666666667px hsl(187deg, 100%, 50%), 119px -10.6666666667px hsl(311deg, 100%, 50%), 58px 59.3333333333px hsl(301deg, 100%, 50%), -34px -266.6666666667px hsl(72deg, 100%, 50%), -69px -35.6666666667px hsl(265deg, 100%, 50%), -90px -253.6666666667px hsl(195deg, 100%, 50%), 141px -137.6666666667px hsl(25deg, 100%, 50%), 31px -196.6666666667px hsl(140deg, 100%, 50%), 54px -187.6666666667px hsl(112deg, 100%, 50%), -180px -107.6666666667px hsl(180deg, 100%, 50%), -33px -363.6666666667px hsl(72deg, 100%, 50%), 64px -323.6666666667px hsl(353deg, 100%, 50%), -208px -69.6666666667px hsl(126deg, 100%, 50%), 54px 2.3333333333px hsl(188deg, 100%, 50%), -161px -147.6666666667px hsl(343deg, 100%, 50%), -223px 15.3333333333px hsl(110deg, 100%, 50%), 247px -42.6666666667px hsl(306deg, 100%, 50%), -10px 33.3333333333px hsl(280deg, 100%, 50%), -190px 40.3333333333px hsl(272deg, 100%, 50%), -97px -78.6666666667px hsl(214deg, 100%, 50%);
  }
}
@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-moz-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-o-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-ms-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-webkit-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-moz-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-o-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-ms-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}

/*# sourceMappingURL=/quiz.1d6342fe.css.map */