body {
  font-family: Arial, "Helvetica  Neue", Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;

  width: 500px;
  height: 500px;

  /* background-color: #ffe4c4; */
}

.cell {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 150px;
  height: 150px;

  background-color: #78bec5;
  color: #fff;

  font-size: 100px;
  font-weight: 700;

  border-radius: 10px;
  box-sizing: border-box;

  cursor: pointer;
}

/* win window */
.win-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255, 0.5);

  width: 100%;
  height: 100%;
}

.win-modal {
  text-align: center;
}

.win-modal p {
  color: #3d4250;
  font-size: 30px;
}

.win-modal-btn {
  padding: 10px 40px;

  background-color: #3d4250;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.hide {
  display: none !important;
}
