.wrap {
  margin: 50px 0 0;
}

header {
  margin: 0 20px;
  text-align: center;
}
header .display-5 {
  font-weight: 400;
}
header .display-5 span {
  color: #dc3545;
}
header.hide {
  display: none;
}
header .lead {
  font-weight: 400;
}

.container .startArea {
  width: 90%;
  margin: 30px auto 0;
  text-align: center;
}
.container .startArea.hide {
  display: none;
}
.container .startArea .list-group-item {
  color: #fff;
  border-width: 3px;
  font-size: 1.4em;
  cursor: pointer;
}
.container .startArea .list-group-item:hover {
  opacity: 0.8;
}
.container .startArea .list-group-item:first-child {
  margin-bottom: 10px;
}
.container .quizWrap {
  position: relative;
  margin-top: 30px;
  height: 100%;
  transform: scale(1);
  transition: transform 0.4s;
}
.container .quizWrap.hide {
  transform: scale(0);
  height: 0;
}
.container .quizWrap.op5 {
  opacity: 0.5;
  pointer-events: none;
}
.container .quizWrap .quiz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.container .quizWrap .quiz-head p {
  margin-bottom: 0;
  margin-right: 10px;
}
.container .quizWrap .quiz-head .closeBtn {
  cursor: pointer;
  height: 24px;
  text-align: center;
}
.container .quizWrap .quizArea {
  padding: 10px 20px;
  background: linear-gradient(-45deg, #198754, #246640);
  color: #fff;
  box-shadow: 1px 1px 3px 1px #333;
  font-size: 1.4em;
}
.container .quizWrap .quizArea p {
  margin-bottom: 0;
}
.container .quizWrap .quizArea .questionHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.container .quizWrap .quizArea .playerName {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}
.container .quizWrap .quizArea .choicesUl {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.container .quizWrap .quizArea .choicesUl li {
  height: 50px;
  width: 45%;
  min-width: 140px;
  line-height: 48px;
  text-align: center;
  list-style-type: none;
  background-color: #005133;
  border: solid 1px #fff;
  box-shadow: 1px 1px 3px 1px #333;
  margin: 8px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.container .quizWrap .quizArea .choicesUl li:hover {
  background-color: #3e80b3;
}
.container .slide-down {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 30px;
  left: 50%;
  width: 94%;
  height: 240px;
  transform: translateX(-50%) translateY(-300px);
  opacity: 0;
  background-color: rgb(255, 255, 255);
  border: solid 1px #005133;
  box-shadow: 1px 1px 2px 1px #333;
  text-align: center;
  padding: 10px;
  transition: transform 0.5s, opacity 0.5s;
}
.container .slide-down p {
  margin-bottom: 0;
  font-size: 1.4em;
}
.container .slide-down p.judgeText {
  width: 60%;
  padding: 6px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.container .slide-down p.judgeText.correct {
  background-color: #dc3545;
  animation: rotate 0.3s 0.5s ease-out forwards;
}
.container .slide-down p.judgeText.wrong {
  background-color: #0d6efd;
  animation: rotate 0.3s 0.5s ease-out forwards;
}
.container .slide-down p.correctText, .container .slide-down p.resultMsg {
  line-height: 1.8;
  font-size: 1.6em;
  letter-spacing: 0.1em;
}
.container .judgeArea.show,
.container .resultArea.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@keyframes rotate {
  0% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 576px) {
  .container {
    width: 576px;
  }
  .container .slide-down {
    width: 540px;
  }
} /*# sourceMappingURL=style.css.map */