body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
} 

.game-body {
  display: flex;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 1.5rem;
  padding: 2rem;
  background: rgb(238, 230, 230);
  align-items: center;
  flex-direction: column;
}

.game-body h1 {
  margin: 0;
  font-size: 2rem;
  text-align: center;
}

.user-buttons {
  display: flex;
  flex-direction: row;
}

.user-move-button {
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin: 0 0.5rem;
}

.move-button-image {
  /* display: flex; */
  height: 80px;
  width: 80px;
  object-fit: contain;
  transition: transform 0.2s;
}

.move-button-image:hover {
  transform: scale(1.2);
}

.result-message {
  text-align: center;
  font-size: 1.2rem;
  margin: 0;
  height: 6rem;
}

.reset-button {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #0077cc;
  color: #fff;
  cursor: pointer;
  transition: background 0.5s;
}

.reset-button:hover {
  background-color: #005fa3;
}

