body {
    font-family: 'Arial', sans-serif;
    background-color: #010301; /* Dark Green background */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white; /* White text color */
  }
  
  h1 {
    font-size: 2.5em; /* Larger font size */
    color: #FF4500; /* Orange-Red text color */
  }
  
  .game-container {
    text-align: center;
  }
  
  .score {
    font-size: 2em;
    margin-bottom: 10px;
    color: #FFD700; /* Gold text color */
  }
  
  .choices {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .choice {
    width: 150px; /* Wider choices */
    height: 150px; /* Wider choices */
    background-color: #FF4500; /* Orange-Red background color */
    border: 2px solid #FFD700; /* Gold border */
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    color: white; /* White text color */
    transition: background-color 0.3s;
    border-radius: 10px; /* Rounded corners */
  }
  
  .choice:hover {
    background-color: #FF6347; /* Tomato background color on hover */
  }
  
  .result {
    margin-top: 30px;
  }
  