   


  .quote-card {
    /* background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    flex-direction: column;
  }
  
  .quote-text {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px;
    font-style: italic;
  }
  .quote-author {
    font-size: 1em;
    color: #777;
    font-weight: bold;
  }
  
  .quote-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    }