#gameArea, body {
  background-color: #282a36;
  color: #f8f8f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  flex-direction: column;
}

#gameArea {
  display: none;
}

#buttonArea {
  display: flex;
  flex-direction: row;
}

table {
  border-collapse: separate;
  border-spacing: 10px;
  border-radius: 2.5px;
  transition: border 0.4s ease;
  border: 5px solid #44475a;
}

.currentPlayerRed {
  border: 5px solid #ff5555;
}

.currentPlayerYellow {
  border: 5px solid #f1fa8c;
}

td {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #44475a;
  border: solid 0px #44475a;
  transition: background-color 0.3s ease;
  transition: border 0.3s ease;
}

td:hover {
  background-color: #282a36;
  border: solid 5px #44475a;
  cursor: pointer;
}

button {
  padding: 10px 20px;
  color: #44475a;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: fit-content;
  margin: 1rem;
  background-color: #8be9fd;
}

.Red, .Red:hover {
  background-color: #ff5555;
  border: none;
}

.Yellow, .Yellow:hover {
  background-color: #f1fa8c;
  border: none;
}