.code {
  font-family: "Fira Mono", "monospace";
  white-space: pre-wrap;
  text-align: start;
  /* padding-left: 10%; */
}

.blank {
  display: inline-block;
  border: 3px solid darkgray;
  border-radius: 10%;
  background-color: #ddd;
  min-width: 60px;
  min-height: 1.75rem;
  font-size: large;
  cursor: move;
  translate: 0 4px;
  font-size: small;
  -ms-touch-action: none;
  touch-action: none;
}
.options {
  display: flex;
  flex-wrap: wrap;
}

.option {
  min-width: 60px;
  min-height: 19px;
  padding: 0.3% 1%;
  font-size: large;
  font-family: "Fira Mono", monospace;
  display: inline-block;
  border: 3px solid darkgray;
  margin: 1%;
  background-color: #ddd;
  border-radius: 10%;
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.card {
  display: inline;
  padding: 3.5%;
  margin: 0.25%;
  color: white;
  background-color: #288ec8;
}

.list {
  /* width: 60%; */
  padding: 5%;
}

.hidden {
  display: none !important;
}

.correct,
.correct-value {
  color: green;
}

.wrong,
.wrong-value {
  color: red;
}

.all,
.wrong,
.wrong-value,
.correct,
.correct-value,
.all-value {
  font-size: large;
  font-weight: 900;
}

.drop-active {
  border-style: dashed;
}

.drop-target {
  background-color: #ccc;
}

.can-drop {
  opacity: 0.5;
}