/* ======== import google font - (Outfit) ========  */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* ======= universel selector css ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ======= body css ======== */
body {
  font-family: "Outfit", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0px;
  background-color: rgb(30 41 59);
  color: #fff;
  text-align: center;
}
/* ======= game title css */
.game-title {
  margin-bottom: 20px;
}
/* ======= game container css ======== */
.game-container {
  width: 360px;
  background-color: rgb(71 85 105);
  border-radius: 8px;
  padding: 20px 0px;
}

.game-container.active {
  display: none;
}

.game-container .game-boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.game-boxs .boxs {
  background-color: rgb(15 23 42);
  width: 100px;
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 40px;
}

.game-boxs .boxs i {
  font-size: 35px;
  color: #fff;
}

.game-boxs .boxs:active,
.game-container .reset-btn:active,
.winner .replay-btn:active {
  transform: scale(0.95);
}

.game-container .reset-btn,
.winner .replay-btn {
  background-color: rgb(15 23 42);
  color: #fff;
  width: 90%;
  height: 47px;
  font-family: "Outfit", sans-serif;
  border-radius: 8px;
  border: 0;
  outline: 0;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.1s ease-in-out;
}
/* ======== winner css ======== */
.winner {
  width: 460px;
  background-color: rgb(71 85 105);
  border-radius: 8px;
  padding: 20px 15px;
  display: none;
}

.winner.active {
  display: block;
}

.winner h1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.winner h1 i {
  font-size: 25px;
  margin: 0px 10px;
}
