body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #ffdfdf;
}

.container {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin-top: -10px; /* Adjust this value as needed to move the game area up */
}

.player-area,
.computer-area {
  margin-bottom: 100px;
}

.choices {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px;
  transition: transform 0.1s ease;
}

button img {
  width: 110px;
  height: 110px;
  transition: transform 0.1s ease;
  filter: grayscale(100%);
}

.computer-choice img {
  width: 100px;
  height: 100px;
  margin: 0 10px;
  transition: transform 0.1s ease filter 0.1s ease;
  filter: grayscale(100%);
}

.pop-up img {
  transform: scale(1.3);
  filter: grayscale(0%);
}

.result {
  margin-top: -60px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
}

.count-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.count-area p {
  margin: 0 10px;
  font-size: 1.2em;
  color: #333;
  text-align: center;
}

.count-area span {
  font-weight: bold;
}

#win-count {
  color: blue;
}

#lose-count {
  color: red;
}

#draw-count {
  color: green;
}

#win-rate {
  color: #007bff;
}

#reset-button {
  margin-left: 10px;
  padding: 5px 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  cursor: pointer;
}

#reset-button:hover {
  background-color: #e0e0e0;
}
