body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  text-align: center;
  margin: 0;
  padding: 40px;
  color: white;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

#choices {
  margin-bottom: 30px;
}

#choices button {
  font-size: 3rem;
  padding: 15px 25px;
  margin: 10px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  background-color: white;
}

#choices button:hover {
  transform: scale(1.2);
  background-color: #f1f1f1;
}

#playerdisplay,
#computerDisplay,
#resultDisplay {
  font-size: 1.5rem;
  margin: 10px 0;
}

#resultDisplay {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

.scoreDisplay {
  font-size: 1.5rem;
  margin: 10px 0;
  font-weight: bold;
}

.scoreDisplay span {
  background-color: white;
  color: #333;
  padding: 5px 15px;
  border-radius: 10px;
  margin-left: 10px;
  display: inline-block;
  min-width: 40px;
}
