body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #e3d5fe;
  padding: 30px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.scoreboard {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.buttons button {
  font-size: 1em;
  padding: 12px 24px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.buttons button:hover {
  transform: scale(1.1);
  background-color: #d3e0ea;
}

#result {
  margin-top: 30px;
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  transition: opacity 0.3s ease;
  white-space: pre-line;
}
