body {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: Arial;
}

h1 {
  font-family: Arial;
}

#gameCanvas {
  margin-bottom: 20px;
  border: 10px solid grey;
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

#mainContainer {
  display: flex;
  gap: 20px;
}

#leaderboard {
  justify-content: center;
  padding: 10px;
  width: 200px;
  height: 400px;
}

#leaderboard h2 {
  text-align: center;
}

#buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

button {
  font-size: 18px;
  padding: 15px 30px;
  margin: 10px;
  cursor: pointer;
}

button[data-players="0"] {
  color: green;
}

button[data-players="1"] {
  color: orange;
}

button[data-players="2"] {
  color: red;
  cursor: not-allowed;
}