*{
    margin: 0;
    padding: 20;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1b3eaf;
  }
  
  .game-container {
    text-align: center;
    background-color: #000000;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: rgb(255, 255, 255);
  }
  
  .choices {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .choice-img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .choice-img:hover {
    transform: scale(1.1);
  }
  
  .result {
    margin: 20px 0;
  }
  
  .score {
    margin-top: 20px;
  }
  
  h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
  }
  button{
    color: rgb(255, 255, 255);
    background-color: #000000;
  }
  p {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
  }
  h2{
    color: rgb(255, 255, 255);
  }
 