body,
html {
  margin: 0;
  padding: 0;
}
body {
  height: 100vh;
  font-family: cursive;
}
.container {
  height: 100%;
  background-color: rgb(190, 190, 11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.title {
  color: rgb(83, 7, 7);
  font-size: 3rem;
  font-weight: 900;
  margin: 1rem auto 0;
  text-shadow: 1px 1px 1px white;
}
.board {
  background-color: black;
  border-radius: 10px;
  padding: 5px;
}
.play-area {
  width: 100%;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
}
.player1 {
  color: yellow;
}
.player-card {
  padding: 1rem;
  font-weight: 900;
  width: 20%;
  height: 300px;
  background-color: rgb(68, 68, 132);
  font-size: 2rem;
  text-align: center;
  border-radius: 5px;
  border: 3px solid black;
  display: flex;
  flex-direction: column;
}
.player-score {
  text-align: left;
  padding-left: 5rem;
}
.player-choice {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  font-size: 8rem;
}
.startBtn {
  font-family: inherit;
  background-color: rgb(240, 108, 0);
  width: 300px;
  height: 4rem;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 900;
}

/* .cell:hover {
  background-color: rgb(59, 167, 59);
} */

.board {
  margin: auto;
  height: 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.row {
  display: flex;
  height: 33%;
  gap: 2px;
}
.cell {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 900;
  border: 1px solid black;
  border-radius: 10px;
  background-color: rgb(190, 172, 172);
  color: yellow;
}
.cell:hover {
  background-color: rgb(59, 167, 59);
}
.cell,
.redText,
.player-card {
  text-shadow: 2px 2px 2px black;
}

.redText,
.player2 {
  color: rgb(255, 0, 0);
}
.results {
  font-size: 2rem;
  text-align: center;
  height: 3rem;
  width: 100%;
  font-weight: 900;
  color: rgb(59, 8, 8);
  text-shadow: 1px 1px 1px white;
}
.footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
  color: rgb(35, 28, 28);
  text-shadow: 1px 1px 1px rgb(255, 255, 255);
  font-weight: 600;
}
