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

body {
  background-color: #FCFCFC;
  font-family: "Roboto", sans-serif;
  color: #1D2120;
  overflow: hidden;
}

.container {
  width: 675px;
  height: 600px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.clock__timer {
  font-size: 80px;
}

.buttons {
  width: 350px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.buttons__btn {
  width: 100px;
  height: 30px;
  background-color: #dc3545;
  border: 1px solid #bd2130;
  border-radius: 3px;
  outline: none;
  color: #FFE7D3;
  cursor: pointer;
}
.buttons__btn:hover {
  background-color: #c82333;
}
.buttons__btn:focus {
  background-color: #c82333;
  box-shadow: 0 0 0 3px rgba(225, 83, 97, 0.5);
  border: none;
}
.buttons__btn:disabled {
  background-color: #ED7B85;
  border: none;
}

.game {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.game__box {
  width: 300px;
  height: 300px;
  background-color: #dcedfc;
  box-shadow: 0 0 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.game__cell {
  width: 75px;
  height: 75px;
}
.game__item {
  width: 75px;
  height: 75px;
}
.game__item[value="1"] {
  background-position: 0 0;
}
.game__item[value="2"] {
  background-position: -75px 0;
}
.game__item[value="3"] {
  background-position: -150px 0;
}
.game__item[value="4"] {
  background-position: -225px 0;
}
.game__item[value="5"] {
  background-position: 0 -75px;
}
.game__item[value="6"] {
  background-position: -75px -75px;
}
.game__item[value="7"] {
  background-position: -150px -75px;
}
.game__item[value="8"] {
  background-position: -225px -75px;
}
.game__item[value="9"] {
  background-position: 0 -150px;
}
.game__item[value="10"] {
  background-position: -75px -150px;
}
.game__item[value="11"] {
  background-position: -150px -150px;
}
.game__item[value="12"] {
  background-position: -225px -150px;
}
.game__item[value="13"] {
  background-position: 0 -225px;
}
.game__item[value="14"] {
  background-position: -75px -225px;
}
.game__item[value="15"] {
  background-position: -150px -225px;
}
.game__item[value="16"] {
  background-position: -225px -225px;
}

.hover {
  background-color: #cde2f5;
}

.modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal__block {
  display: none;
  width: 500px;
  height: 175px;
  margin: 0 auto;
  padding: 30px 0 15px;
  background-color: #FCFCFC;
  border: 1px solid #666666;
  border-radius: 5px;
}
.modal__block p {
  width: 100%;
  height: 75px;
  margin: 0;
  padding: 20px;
  border: 1px solid #ced4da;
  border-left: none;
  border-right: none;
  color: #1D2120;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.modal__block form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.modal__btn {
  height: 38px;
  margin: 15px 4px;
  padding: 10px;
  border-radius: 3px;
  outline: none;
  color: #FFE7D3;
  cursor: pointer;
}
.modal__btn_close {
  background-color: #dc3545;
  border: 1px solid #bd2130;
}
.modal__btn_close:hover {
  background-color: #c82333;
}
.modal__btn_close:focus {
  background-color: #c82333;
  box-shadow: 0 0 0 3px rgba(225, 83, 97, 0.5);
  border: none;
}
.modal__btn_check {
  background-color: #28a745;
  border: 1px solid #1e7e34;
}
.modal__btn_check:hover {
  background-color: #218838;
}
.modal__btn_check:focus {
  background-color: #218838;
  box-shadow: 0 0 0 3px 72, 180, 97, 0.5;
  border: none;
}/*# sourceMappingURL=style.css.map */