body {
  font-family: Arial, sans-serif;
  background-color: #008000;
  color: white;
  text-align: center;
}

#game-container {
  width: 80%;
  margin: 0 auto;
}

h1 {
  margin-bottom: 20px;
}

#players-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.player {
  width: 120px;
  height: 180px;
  margin: 10px;
  background-color: #333;
  border-radius: 10px;
  position: relative;
  padding: 10px;
  cursor: pointer;
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

button {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
}

button:hover {
  background-color: darkred;
}

.hand-info {
  margin-top: 10px;
}

.card {
  width: 50px;
  height: 70px;
  margin: 5px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
}

#message {
  margin-top: 20px;
  font-size: 18px;
  color: yellow;
}