body {
  background-image: url(./img/bg-body.jpg);
  background-size: cover;
}

.wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 94%;
  min-height: 420px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px #666;
}

.quizArea h1.display-5 {
  margin: 20px 10px;
  font-weight: 400;
  font-size: 1.4em;
}
.quizArea .questionArea {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.quizArea .questionArea.hide {
  display: none;
}
.quizArea .questionArea .question {
  opacity: 0;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 10px 0 20px;
  color: #0b5ed7;
}
.quizArea .questionArea .question.show {
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.quizArea .questionArea .choicesUl {
  margin-bottom: 20px;
  opacity: 0;
}
.quizArea .questionArea .choicesUl.show {
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.quizArea .questionArea .choicesUl.pointer-none li {
  pointer-events: none;
}
.quizArea .questionArea .choicesUl li {
  font-size: 1.4em;
  padding: 12px;
  width: 92%;
  margin: 0 auto;
  cursor: pointer;
}
.quizArea .questionArea .choicesUl li:hover {
  background-color: rgba(207, 244, 252, 0.5);
}
.quizArea .slide {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.quizArea .slide.hide {
  display: none;
}
.quizArea .slide .judge {
  margin: 10px 0 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.quizArea .slide .judge img {
  width: 90px;
  height: 90px;
}
.quizArea .slide .slideText {
  margin-bottom: 20px;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
.quizArea .slide .slideText.resultMsg {
  margin: 30px auto;
}
.quizArea .slide .slideText span {
  font-size: 1.2em;
}
.quizArea .slide button {
  width: 75%;
  font-size: 1.2em;
  margin-bottom: 0;
  padding: 8px;
}
.quizArea .judgeInner,
.quizArea .resultInner {
  opacity: 0;
  padding: 0;
}
.quizArea .judgeInner.show,
.quizArea .resultInner.show {
  padding: 10px;
  margin-bottom: 10px;
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 576px) {
  .container {
    width: 576px;
  }
} /*# sourceMappingURL=style.css.map */