body {
  text-align: center;
  font-size: 20px;
}

button {
  padding: .5%;
}

.newLineArea {
  width: 50%;
  height: 25px;
}

header button {
  font-size: 26px;
}

.bingoGrid {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3%;
  display: none;
}

.bingoGrid--16, .bingoGrid--25, .bingoGrid--36 {
  display: -ms-grid;
  display: grid;
  max-width: 500px;
  max-height: 800px;
}

.bingoGrid--16 div, .bingoGrid--25 div, .bingoGrid--36 div {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bingoGrid--16 {
  font-size: 2vh;
  -ms-grid-columns: 25% 25% 25% 25%;
      grid-template-columns: 25% 25% 25% 25%;
  -ms-grid-rows: 12vh 12vh 12vh 12vh;
      grid-template-rows: 12vh 12vh 12vh 12vh;
}

.bingoGrid--25 {
  font-size: 1.5vh;
  -ms-grid-columns: 20% 20% 20% 20% 20%;
      grid-template-columns: 20% 20% 20% 20% 20%;
  -ms-grid-rows: 10vh 10vh 10vh 10vh 10vh;
      grid-template-rows: 10vh 10vh 10vh 10vh 10vh;
}

.bingoGrid--36 {
  font-size: 1.2vh;
  -ms-grid-columns: 16.5% 16.5% 16.5% 16.5% 16.5% 16.5%;
      grid-template-columns: 16.5% 16.5% 16.5% 16.5% 16.5% 16.5%;
  -ms-grid-rows: 8vh 8vh 8vh 8vh 8vh 8vh;
      grid-template-rows: 8vh 8vh 8vh 8vh 8vh 8vh;
}

.result {
  background-color: lightgreen;
}

.unchecked {
  background-color: powderblue;
  border: 2px solid #222494;
}

.unchecked:hover {
  cursor: pointer;
}

.checked {
  background-color: lightgreen;
  border: 2px solid #276e37;
}

.checked:hover {
  cursor: pointer;
}

.listOfLines {
  font-size: 16px;
}

.listOfLines div {
  padding: 3px;
  border: 2px solid #d18dd1;
  background-color: #ecc1ec;
  border-radius: 3px;
  width: 90%;
  margin-left: 2%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.listOfLines p {
  display: inline;
}

.listOfLines button {
  padding: 0 2%;
}
/*# sourceMappingURL=main.css.map */