* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #031e4f;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  padding: 2rem 0;
  min-height: 100vh;
}
body h2 {
  font-size: 1.9rem;
  color: #001e4d;
}
body .quiz {
  padding: 1rem 0;
}
body .quiz h4 {
  font-size: 1.2rem;
  color: #001e4d;
}
body .quiz .QanswerBtns .btn {
  width: 100%;
  text-align: start;
  margin: 0.8rem 0;
  padding: 0.5rem 0.8rem;
  font-size: 1.1rem;
  background: transparent;
  color: #222;
  border: 1px solid #222;
  transition: all 0.3s ease-in-out;
}
body .quiz .QanswerBtns .btn:hover:not([disabled]) {
  background: #222;
  color: #fff;
  cursor: pointer;
}
body .quiz .QanswerBtns .disabled {
  cursor: no-drop !important;
}
body .quiz #next {
  display: none;
}

.correct {
  background: #9aeabc !important;
}

.incorrect {
  background: #ff9393 !important;
}

/*# sourceMappingURL=style.css.map */
