.book-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.book {
  padding: 10px;
  display: flex;
}

.book-info {
  padding-left: 10px;
}

.book img {
  width: 200px;
}

.book-description {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* WhatsApp Button */
.whatsapp-button {
  border: none;
  color: white;
  background-color: #25d366;
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-size-body-desktop);
  padding: 10px 16px;
  gap: 8px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  transition: 5ms;
}

.whatsapp-button img {
  width: 35px;

}

@media only screen and (max-width: 720px) {
  .book img {
    width: 100px;
  } 

  .whatsapp-button {
    border-radius: 10px;
    font-size: var(--font-size-body-mobile);
  }

  .whatsapp-button img {
    width: 25px;
  }
}
