/* Writer Demo CSS */
.book-wrap {
  position: relative;
  perspective: 1000px;
}

.book-card {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.book-card:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

.bookWebSize {
  max-width: 100%;
}

.mobileDivImg {
  display: block;
}

@media (max-width: 800px) {
  .mobileDivImg {
    width: 100% !important;
    padding: 0%;
    margin: 0%;
    background: #e10079 !important;
  }
}

@media (min-width: 800px) {
  .mobileDivImg {
    width: 40% !important;
    margin-left: 6%;
    background: #e10079 !important; 
    margin-top: 7%;
  }
}
