/* Reset default styles */
*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #b499ff, #a6ccec);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: #f1efe3;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.scores {
  margin-bottom: 30px;
  text-align: center;
}

.scores p {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #555;
}

.weapons {
  display: flex;
  justify-content: space-around;
}
h1 {
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.choice {
  background-color: #003049;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 3em;
  margin: 0 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
}
span{
  font-size: 20px;
  font-weight: 800;
}
.choice:hover {
  background-color: #370617
}
.details {
  text-align: center;
  margin-top: 20px;
}

.details p {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

/* Custom styles for result message box */
#result {
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

/* Dynamic background colors for result message box */
#result.win {
  background-color: #28a745; /* Green */
  color: #fff;
}

#result.loss {
  background-color: #dc3545; /* Red */
  color: #fff;
}

#result.tie {
  background-color: #ffc107; /* Yellow */
  color: #333;
}
