.rpsButtons  {
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 20px;               
  min-height: 100px;      
  background-color: #203a37;

  
}



.rpsButtons img {
    width: 180px;  
    height: auto;
    margin-bottom: 5px;
}

/* General button styling */
.choice {
  
  padding: 20px 40px;
  font-size: 1.5rem;
  border: none;
  border-radius: 12px;
  color: rgb(215, 255, 223);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
  background-color: blueviolet;
  min-width: 200px;
  flex-direction: column;
}

.playerScore, .computerScore {
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 200px;               
  min-height: 100px;
  color: brown;
  background: linear-gradient(to right, #5cd9ff, #ffffff, #836dff);
  font-size: 3.5rem;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.gametitle {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #003827;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #ffc9c9, #ffffff, #ffc9c9);
}

.verdict {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: #ff5733;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.4);
  font-family: 'Tahoma', Geneva, Verdana, sans-serif;
}

.startGame, .result, .rounds {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  color: #ff4757;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.4);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



