/**           */
.wrapper {
  max-width: 800px;
  margin: 50px auto;
}
@media screen and (max-width: 405px) {
  .wrapper {
    padding: 0 5px;
  }
}

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  text-align: center;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  cursor: pointer;
  background: #0d9095;
  color: #fff;
  padding: 5px 20px;
  margin: 5px;
  border-radius: 5px;
}
.button:disabled {
  cursor: default;
  background: rgba(195, 195, 195, 0.9882352941);
}

.count {
  margin: 10px 0;
}
.count span {
  margin: 0 10px;
}

.messig {
  color: red;
  margin: 10px 0 5px 0;
}

.game_field {
  position: relative;
  width: 400px;
  height: 400px;
  border: 1px solid gray;
  border-radius: 5px;
  color: gray;
  background: #e5e5e5;
}
@media screen and (max-width: 405px) {
  .game_field {
    width: 315px;
    height: 315px;
  }
}

.numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 25%;
  height: 25%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
  user-select: none;
}

.size {
  margin: 0;
}
.size a {
  margin-right: 5px;
}

/**3x3*/
.thri_numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 33.3%;
  height: 33.3%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
}

/**5x5*/
.five_numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 20%;
  height: 20%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
}

.six_numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 16.7%;
  height: 16.7%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
}

.seven_numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 14.3%;
  height: 14.3%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
  font-size: 40px;
}
@media screen and (max-width: 405px) {
  .seven_numbers {
    font-size: 30px;
  }
}

.eight_numbers {
  position: absolute;
  cursor: pointer;
  background: #fff;
  width: 12.5%;
  height: 12.5%;
  border: 1px solid gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.3s;
  font-size: 40px;
  font-size: 30px;
}

.popUpShadow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.popUp {
  display: flex;
  padding-bottom: 20px;
  color: white;
  font-size: 25px;
}

/*# sourceMappingURL=style.css.map */
