* {
  padding: 0;
  margin: 0;
  outline: none;
  font-family: "Work Sans", sans-serif;
  border: none;
}
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
 background: linear-gradient(45deg, rgb(87, 171, 255), rgb(0 132 255)));
}
h1 {
  font-family: "Handjet", cursive;
  font-size: 4rem;
}
.game-container {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 50px auto;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 10vw);
  position: relative;
}
.scoreBoard {
  margin: auto;
  display: grid;
  grid-template-rows: repeat(2, 10vh);
  align-items: center;
}
.cell {
  width: 10vw;
  height: 10vw;
  border: 5px solid #000000;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  cursor: pointer;
}
.c-1 {
  border: none;
}
.c-2 {
  border-top: none;
  border-bottom: none;
}
.c-3 {
  border: none;
}
.c-4 {
  border-left: none;
  border-right: none;
}

.c-6 {
  border-left: none;
  border-right: none;
}
.c-7 {
  border: none;
}
.c-8 {
  border-bottom: none;
  border-top: none;
}
.c-9 {
  border: none;
}

.status {
  margin-top: 10px;
}
.text {
  font-size: 4rem;
}
button {
  background: transparent;
  border-radius: 18px;
  border: 1px solid black;
  padding: 5px 10px;
  font-size: 20px;
}
button:hover {
  border: 3px solid black;

  font-weight: 700;
  cursor: pointer;
}
.win {
  text-decoration: line-through;
}
.score {
  height: 10vh;
  width: 20vw;
  border: 3px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scoreBoard > div:nth-child(2) {
  border-top: none;
}
.score {
  font-size: 1.5rem;
}
.line {
  position: absolute;

  height: 5px;
  border-radius: 12px;
  background: #000000;
}
@media screen and (max-width: 900px) {
  .game-container {
    display: flex;
    flex-direction: column;
  }
  .board {
    margin: 0px auto 20px auto;
  }
  .scoreBoard {
    margin-top: 10px;
  }
  .text {
    font-size: 2.5rem;
  }
  .score {
    font-size: 12px;
    font-weight: 900;
  }
}
