body {
  text-align: center;
  font-family: Arial, sans-serif;
}

h1 {
  margin-top: 20px;
}

.choice,
.c-choice {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin: 10px;
  transition: transform 0.2s ease;
}

.choice:hover {
  transform: scale(1.1);
}

#game {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#player,
#computer {
  width: 200px;
}

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

#computer {
  display: none;
}