  .card {
    background: #ffffffe3;
    border: 4px solid #cb982b   ;
    width: 250px;
    border-radius: 20px;
      /* box-shadow: 9px 7px 20px 4px rgba(226, 176, 76, 0.3), 0 6px 20px rgba(204, 163, 82, 0.2); */
    overflow: hidden;
    text-align: center;
  }
  .card img {
    width: 80%;
    height: 300px;padding: 10px 0px;
    border-bottom: 3px solid #cb982b;
    object-fit: cover;
  }
  .card .info {
    padding: 15px;
  }
 .info1 {
        padding: 26px 15px;
  }
  .card .book-name {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    color: #333;
  }
  .card .author-name {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }
  .card button {
    background: #cb982b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
  }
  .card button:hover {
    background: #bd8816;
  }