body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    color: #333;
    font-family:serif ;
  }
  h2{
    color: #333;
    font-family:serif ;

  }
  
  #reader-button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
  }
  
  #question-container {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .option-image {
    width: 100px;
    height: 160px;
    margin: 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
  }
  
  .option-image:hover {
    transform: scale(1.1);
  }
  
  #result {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
  }
  