/* S Global Rules */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::selection {
  background: transparent;
}

body {
  font-weight: bold;
  background: #fee8e8;
}

/* E Global Rules */
/* S Game */
.container #alert #massage, .container #alert, .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  height: 100vh;
  flex-direction: column;
}
.container #alert {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(62, 62, 62, 0.7333333333);
}
.container #alert #massage {
  flex-direction: column;
  width: 300px;
  height: 200px;
  background: whitesmoke;
  border-radius: 10px;
  font-size: 30px;
  font-weight: bold;
}
.container #alert #massage span {
  margin-bottom: 30px;
  background: #e40c30;
  border-radius: 5px;
  color: white;
  padding: 5px 15px;
  font-size: 45px;
}
.container .title, .container .play {
  color: white;
  width: 370px;
  height: 60px;
  background: #222;
  text-align: center;
  margin: 0px 20px;
  font-size: 40px;
  padding: 7px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 10px gray;
}
.container .title span, .container .play span {
  color: #ffd900;
}
.container .title span:last-child, .container .play span:last-child {
  color: #e40c30;
  margin-right: 10px;
}
.container #btn {
  width: 350px;
  border-radius: 10px;
  border: none;
  height: 40px;
  box-shadow: 5px 5px 10px gray;
  margin-top: 20px;
  background: #e40c30;
  cursor: pointer;
  transition: all 0.4s;
  color: white;
  font-size: 17px;
  font-weight: bold;
  visibility: hidden;
}
.container #btn:hover {
  background: #c31633;
}
.container .game {
  margin: 20px auto;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, auto);
  place-content: center;
  box-shadow: 5px 5px 15px gray;
  background: #e40c30;
  color: white;
  border-radius: 10px;
  padding: 10px;
}
.container .game #sq1 {
border: 4px solid white;
}
.container .game #sq2 {
  border: 4px solid white;
}
.container .game #sq3 {
  border: 4px solid white;
}
.container .game #sq4 {
  border: 4px solid white;
}
.container .game #sq5 {
  border: 4px solid white;
}
.container .game #sq6 {
  border: 4px solid white;
}
.container .game #sq7 {
  border: 4px solid white;
}
.container .game #sq8 {
  border: 4px solid white;
}
.container .game #sq9 {
  border: 4px solid white;
}
.container .game .square {
  width: 100px;
  height: 100px;
  display: flex;
  border: none;
  justify-content: center;
  justify-self: center;
  font-size: 90px;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.container .game .square:hover {
  background: #730d1e;
}
.container .play {
  margin-bottom: 80px;
}
.container .play #user {
  padding: 0 8px;
  background: whitesmoke;
  border-radius: 10px;
}

/* E Game */

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