.myCollection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  align-content: space-between;
  gap: 20px 20px;
}
.myCollection .book {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.myCollection .book a {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
}
.myCollection .book img {
  box-shadow: 5px 5px 7px rgba(51, 51, 51, 0.75);
  border: 1px solid #eee;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.myCollection .book img:hover {
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.75);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.myCollection .book p {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  display: inline;
  max-width: 150px;
  margin: 0.6rem 0 0;
  font-size: 1rem;
  text-wrap: wrap;
}
