:root {
  --default-color: #00539d;
  --bg-default: #e6e9ec;
  --white: #ffffff;
  --purple: #9968aa;
  --dark-purple: #5a0578;
  --green: #7fb42f;
  --gray: #5b5b5e;
  --red: #ba4939;
  --line-size: 1.5px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

html {
  background: var(--bg-default);
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  color: var(--default-color);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}
html body #middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-color: var(--bg-default);
  min-height: 100vh;
}
html body #middle::before, html body #middle:after {
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  min-height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
html body #middle::before {
  top: 0;
  background-image: url("../images/background/bg-top.png");
  background-position: top center;
}
html body #middle:after {
  bottom: 0;
  background-image: url("../images/background/bg-bottom.png");
  background-position: bottom center;
}
html body #middle #step1 h1 {
  font-size: 100px;
  font-weight: 800;
}
html body #middle #step2 h2 {
  padding: 0 7rem;
  font-size: 75px;
  text-align: left;
}
html body #middle #step2 h2 strong {
  font-size: 85px;
  font-weight: 900;
}
html body #middle #step3 {
  text-align: left;
}
html body #middle #step3 input {
  background-color: var(--purple);
  border-radius: 0;
  color: var(--bg-default);
  font-size: 18px;
}
html body #middle #step3 button {
  background-color: var(--default-color);
  border-color: var(--default-color);
  font-size: 35px;
  margin: 0 auto;
  display: block;
  position: relative;
  top: 20px;
  padding: 0 4rem;
}
html body #middle #quizScreen {
  padding: 0 7rem;
}
html body #middle #quizScreen h5 {
  background-color: var(--green);
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
html body #middle #quizScreen h2 {
  padding: 2rem 2rem 2rem 0;
  font-size: 45px;
  font-weight: 500;
}
html body #middle #quizScreen #optionsContainer button {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 1rem;
}
html body #middle #quizScreen #optionsContainer button,
html body #middle #quizScreen #optionsContainer .list-group-item-success,
html body #middle #quizScreen #optionsContainer .list-group-item-danger {
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}
html body #middle #quizScreen #optionsContainer button i,
html body #middle #quizScreen #optionsContainer .list-group-item-success i,
html body #middle #quizScreen #optionsContainer .list-group-item-danger i {
  background-color: var(--purple);
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 700;
  font-style: normal;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
html body #middle #quizScreen #optionsContainer button span,
html body #middle #quizScreen #optionsContainer .list-group-item-success span,
html body #middle #quizScreen #optionsContainer .list-group-item-danger span {
  color: var(--gray);
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  padding-left: 0;
  display: flex;
  line-height: normal;
  align-items: center;
}
html body #middle #quizScreen #optionsContainer button.long-text,
html body #middle #quizScreen #optionsContainer .list-group-item-success.long-text,
html body #middle #quizScreen #optionsContainer .list-group-item-danger.long-text {
  align-items: flex-start;
}
html body #middle #resultScreen {
  text-align: left;
  padding: 0 7rem;
}
html body #middle #resultScreen h2 {
  background-color: var(--green);
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}
html body #middle #resultScreen h3 {
  padding: 2rem 0 0;
  font-size: 35px;
  font-weight: 600;
}
html body #middle #resultScreen #resultMessage h4 {
  font-weight: 900;
  color: var(--dark-purple);
  font-size: 40px;
  margin-top: 1.5rem;
}
html body #middle #resultScreen #resultMessage p {
  font-weight: 400;
  font-style: normal;
  color: var(--gray);
  padding-right: 10rem;
}
html body #middle #thankYouScreen h2 {
  font-size: 90px;
  font-weight: 800;
}
html body #middle #thankYouScreen p {
  color: var(--red);
  font-weight: 600;
  font-size: 40px;
}/*# sourceMappingURL=styles.css.map */