[v-cloak] {
  display: none;
}

.element {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  background-color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

.msg {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.reply {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  color: #fff;
  background-color: rgb(250, 179, 24);
  border-radius: 3px;
  cursor: pointer;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #00d48d;
}

#app {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.puzzle {
  color: #fff;
  position: absolute;
  font-size: 8rem;
  z-index: -5;
  right: 30%;
  top: 50%;
  transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .puzzle {
    left: 50%;
    top: 80%;
  }
}

.puzzle-1 {
  left: 20%;
  top: 50%;
  transform: rotate(30deg);
  font-size: 10rem;
}
@media screen and (max-width: 768px) {
  .puzzle-1 {
    left: 10%;
    top: 10%;
  }
}

.game {
  padding: 20px 30px;
  border-radius: 8px;
}
.game h1 {
  font-size: 5rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .game h1 {
    font-size: 3rem;
  }
}
.game .question {
  font-weight: 900;
  font-size: 2rem;
}
.game .answer {
  text-decoration: line-through;
  color: #999;
}
.game .area {
  min-width: 300px;
  padding: 15px 0px;
  border-radius: 8px;
  min-height: 50px;
}
.game .elements {
  min-width: 300px;
  padding: 15px 0px;
  border-radius: 8px;
  min-height: 50px;
}
.game .msg {
  min-height: 50px;
}

.reset {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .reset {
    color: rgb(250, 179, 24);
  }
}/*# sourceMappingURL=style.css.map */