#fill_the_cup {
  width: 850px;
}

.info {
  font-size: 2rem;
  margin-left: 0.5rem;
  color: grey;
  cursor: pointer;
}

.info:hover {
  color: pink;
}

h1 {
  font-size: 3em;
  text-align: center;
}

h2 {
  text-align: center;
}

h3 {
  text-align: center;
}

.game-info {
  margin: 20px;
}

.overlay {
  background-color: #e4e4e4ab;
  height: 100%;
  width: inherit;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
  z-index: 2;
}

.overlay h2 {
  font-size: 3em;
}

.overlay button {
  font-size: 14pt;
  padding: 5px 10px;
  margin: 10px;
}

.help {
  background-color: #e4e4e4da;
}

.help-text {
  max-width: 500px;
  font-size: 16pt !important;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.drop-target {
  width: 300px;
  border: dashed 5px #ccc;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drop-target .icon {
  font-size: 10rem;
  color: #b5b5b5;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.cup {
  width: 150px;
  border: solid 2px #ccc;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fill {
  background-color: pink;
  position: relative;
}

#output {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16pt;
}
/*# sourceMappingURL=fill_the_cup.css.map */