.introQuiz {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.introQuizTextbox {
  margin-top: 10px;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  border-radius: 20px;
}
.introQuizTextbox p {
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.questionBackground {
  background-color: #d9d9d9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.failBlock {
  padding-top: unset;
  width: 640px;
}
.failBlock p {
  margin-bottom: 10px;
}

.questionImg {
  width: 14%;
  position: absolute;
  left: 43%;
  top: 6%;
}

.questionHeader {
  position: absolute;
  top: 30%;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #44397b;
}
.questionHeader span {
  color: #18a197;
  font-weight: 800;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; /* Standard */
}

.questionText {
  position: absolute;
  top: 37%;
  width: 90%;
  text-align: center;
  font-size: 18px;
  margin: 10px 5% 0 5%;
}

.questionAnswerContainer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  margin: 0 0 20px 0;
}

.questionAnswer {
  background-color: #557c83;
  border-radius: 10px;
  height: 60px;
  width: 90%;
  left: 5%;
  top: 0px;
  position: relative;
  margin: 0 0 10px 0;
}
.questionAnswer:active {
  background-color: #2fa89f;
}
.questionAnswer p {
  position: relative;
  color: white;
  font-size: 18px;
  margin: 0px;
  padding: 10px 10px 10px 80px;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; /* Standard */
}
.questionAnswer div {
  color: #b5b48e;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 32px;
  margin: 10px 10px 10px 25px;
  font-family: "LibreFranklin", Arial, Helvetica, sans-serif;
  font-weight: bolder;
}

@media (hover: hover) {
  .questionAnswer:hover {
    background-color: #3aada8;
  }
  .questionAnswer:hover div {
    color: white;
  }
}
.questionFeedback {
  background-color: #d9d9d9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 101;
}
.questionFeedback img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 60px);
}
.questionFeedback p {
  position: absolute;
  top: 32%;
  text-align: center;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0;
  font-size: 18px;
}
.questionFeedback p span {
  color: #44397b;
  font-size: 24px;
}
.questionFeedback p span b {
  color: #21343b;
}

.quizButton {
  height: 70px;
  width: 270px;
  background-color: #3aada8;
  bottom: 0px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  margin: 0;
  position: absolute;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -30px);
  color: white;
  font-family: "LibreFranklin", Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 4px;
}
.quizButton:hover {
  background-color: #53c4c0;
}
.quizButton:active {
  background-color: #1f827f;
}

.questionFeedbackFrame {
  background-color: #29515b;
  border-radius: 10px;
  width: 90%;
  height: 50%;
  bottom: 5%;
  left: 5%;
  position: absolute;
}
.questionFeedbackFrame p {
  font-size: 18px;
  text-align: center;
  color: white;
  margin: 40px;
  top: 0px;
}/*# sourceMappingURL=quiz.css.map */