* {
  margin: 0;
  padding: 0;
}

.gamearea {
  position: relative;
  width: 700px;
  min-height: 700px;
  border: 1px solid #000;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.gamearea .top {
  padding-bottom: 50px;
  position: absolute;
  top: 100px;
  text-align: center;
}
.gamearea .top h1 {
  padding-bottom: 30px;
}
.gamearea .top p {
  padding: 5px;
}
.gamearea .bottom {
  position: absolute;
  bottom: 0px;
  margin-bottom: 100px;
}
.gamearea .bottom #results {
  width: 100%;
  text-align: center;
  opacity: 1;
  transition: 0.14s all ease-in-out;
}

.inline {
  width: 100%;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inline h3 {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-size: 20px;
}

.choose {
  margin-top: 50px;
}
.choose button {
  margin: 2px;
  padding: 5px 20px;
  font-size: 17px;
  cursor: pointer;
  border: 2px solid #ddd;
  color: #333;
  height: 40px;
  font-size: 20px;
  border-radius: 3px;
  transition: 0.14s all ease-in-out;
}
.choose button:active {
  transform: scale(0.9);
}

.choices {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.choices h3 {
  text-align: left;
  float: left !important;
  display: block;
  font-size: 30px;
}
.choices .carea {
  position: relative;
  width: 200px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.choices .carea #mchoice, .choices .carea #cchoice {
  font-size: 30px;
  opacity: 0;
  transition: 0.14s all ease-in-out;
}

@media screen and (max-width: 764px) {
  .gamearea {
    width: 100% !important;
    border: none;
  }
}
@media screen and (max-width: 342px) {
  body {
    width: 342px;
  }
}/*# sourceMappingURL=style.css.map */