* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#root {
  height: 100%;
}

.grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 0;
  width: 100vw;
  justify-content: space-between;
}

.cell {
  height: calc(calc(100vh - 10vh) / 6);
  width: 20vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  border: 1px solid black;
}

.cell.bingo {
  font-size: 10vh;
}

.cell:not(.bingo) {
  cursor: pointer;
  font-size: 4vw;
  word-wrap: break-word;
}

@media only screen and (min-width: 768px) {
  .cell:not(.bingo) {
    font-size: 3vh;
  }
}

.cell.clicked {
  border: 1px solid #e8e288;
  background-color: #7dce82;
}

.you-got-it {
  background-color: #e8e288;
}

.regenerate {
  cursor: pointer;
  text-align: center;
  font-size: 2vh;
  padding: 0;
}

.regenerate-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
}
