a.navbar-title,
a.navbar-title:hover {
  color: var(--bs-white);
  text-decoration: none;
}

.book-cover {
  width: 280px;
  height: 340px;
  background-color: var(--bs-primary);
  border-radius: 10px;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: .2s ease-in-out;
  cursor: pointer;
}

.book-cover:hover {
  transform: translateY(-4px);
}

.book-title {
  color: #f5f1e8;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.7);
}

/* Grid rapi */
.book-wrapper {
  display: flex;
  justify-content: center;
}