* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: black;
}

body {
  background-color: rgb(14, 13, 13);
}

h1 {
  color: white;
  text-align: center;
  margin-top: 50px;
}

span {
  color: white;
}

#turnPlayer {
  font-weight: 700;
}

.btn-div {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.startGame {
  background-color: #30f7e6;
  border-radius: 5px;
  padding: 8px;
  cursor: pointer;
  border: 2px solid #30f7e6;
  transition: 0.3s;
  position: absolute;
  top: 47vh;
}

.startGame:hover {
  background-color: transparent;
  color: #30f7e6;
}

.players {
  width: 470px;
  display: flex;
  justify-content: space-between;
}

header {
  height: 18vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0.1;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  place-items: center;
  width: 470px;
  height: 160px;
}

.cell {
  width: 150px;
  height: 150px;
  background-color: #30f7e6;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

.win {
  background-color: rgb(98, 238, 110);
}

.tryAgain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.tryAgain button {
  background-color: transparent;
  color: #30f7e6;
  border-radius: 100%;
  border: none;
}

.tryAgain button i {
  color: #30f7e6;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .row {
    width: 380px;
    height: 130px;
  }
  .cell {
    width: 120px;
    height: 120px;
  }
  .players {
    width: 375px;
  }
}
@media (max-width: 400px) {
  .row {
    width: 320px;
    height: 110px;
  }
  .cell {
    width: 100px;
    height: 100px;
  }
  .players {
    width: 317px;
  }
}
@media (max-width: 340px) {
  .row {
    width: 250px;
    height: 85px;
  }
  .cell {
    width: 80px;
    height: 80px;
    font-size: 70px;
  }
  .players {
    width: 247px;
    margin-top: 20px;
  }
  span {
    font-size: 13px;
  }
  h3 {
    font-size: 20px;
  }
}

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