body {
    font-family: Arial;
    text-align: center;
    background: #0f172a;
    color: white;
  }
  
  .container {
    margin-top: 80px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  .score {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 20px;
    margin: 20px;
  }
  
  .choices button {
    margin: 10px;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
  }
  
  button:hover {
    transform: scale(1.1);
  }
  
  .result {
    margin-top: 30px;
    font-size: 20px;
  }
