@font-face {
  font-family: "robotoBold";
  src: url("/assets/fonts/robotoBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  background-color: black;
}

body {
  overflow-y: hidden;
  margin: 0;
  /*This removes the border around the canvas that Phaser adds, making the game actually take up all the available space*/
}

.version-info {
  color: white;
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  right: 10px;
  pointer-events: none;
}

.qa-control {
  font-family: robotoBold, serif;
  font-size: 26px;
  color: white;
  position: absolute;
  width: 200px;
  height: 350px;
  display: flex;
  flex-direction: column;
  background-color: #1A1C21;
}
.qa-control.hidden {
  display: none;
}
.qa-control * {
  margin: 10px auto;
}
.qa-control .qa-title {
  width: 100px;
  text-align: center;
  height: 100px;
  font-size: 20px;
}
.qa-control .auto-complete-btn {
  outline: none;
  font-size: 13px;
  padding: 5px 10px;
  cursor: pointer;
  color: white;
  background-color: transparent;
  border: 2px white solid;
  border-radius: 50px;
  width: 150px;
  height: 40px;
  transition: 0.3s all;
}
.qa-control .reset-progress-btn {
  outline: none;
  font-size: 13px;
  padding: 5px 10px;
  cursor: pointer;
  color: white;
  background-color: transparent;
  border: 2px white solid;
  border-radius: 50px;
  width: 150px;
  height: 40px;
  transition: 0.3s all;
}
.qa-control .auto-complete-btn:hover {
  background-color: white;
  color: black;
}
.qa-control .reset-progress-btn:hover {
  background-color: white;
  color: black;
}
.qa-control .hint-freely-container {
  font-size: 16px;
}
.qa-control .level-jump-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.qa-control .level-jump-container input {
  width: 40px;
}
.qa-control .error-content {
  color: maroon;
  font-size: 18px;
  text-align: center;
}

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