/* quiz-card */
.quiz-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 10px 5px 5px rgb(151, 147, 147);
    overflow: hidden;
    max-width: 350px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .quiz-card-image img {
    width: 100%;
    height: auto;
  }
  
  .quiz-card-image img:hover {
    transform: scale(1.05);
    /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);  */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .quiz-card-body {
    padding: 15px;
  }
  
  .quiz-card-body h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
  }
  
  .date {
    font-weight: bold;
    color: #28a745;
  }
  
  .quiz-info {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
  }
    
  .quiz-info div {
    display: flex;
    align-items: center;
  }
  
  .quiz-info i {
    color: #007bff;
    margin-right: 5px;
  }
  @media screen and (max-width:500px) {
    .quiz-info {
      display: flex;
      margin: 10px 0;
    }
    .quiz-info i {
      margin-right: 3px;
    }
  }

  .quiz-play-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    color: var(--danger);
    border: 1px solid var(--danger);
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .quiz-play-btn:hover {
    background-image: linear-gradient(to right, #db3a3a, #d11b63, #b12488, #7b3ba3, #004aad);
    color: #fff;
  }
  
  .quiz-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .cash-prize i {
    color: #f0ad4e;
    margin-right: 5px;
  }
  
  .terms {
    color: #007bff;
    text-decoration: none;
  }
  
  .terms:hover {
    text-decoration: underline;
  }
  
  /* quiz-card */
  