.other-books {
  padding: 60px 0;
  display: flex;
  flex-flow: row;
  justify-content: center;
}

.book-list {
  list-style: none;
  display: flex;
  flex-flow: row;
  gap: 60px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.book-item {
  display: flex;
  flex-flow: column;
  text-align: center;
  place-items: center;
  gap: 20px;
  max-width: 200px;
  margin: 0 auto;
  height: 100%;
}


.book-cover-wrapper {
  height: 150px;
}

.book-cover {
  height: 100%;
}

.book-title {
  font-family: "MyHappy70sBd", serif;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  text-decoration: none;
}

.book-description {
  font-family: "ITCFranklinGothicLTPro-Bk", sans-serif;
}

.book-button {
  width: 200px;
  text-decoration: none;
  line-height: 30px;
  padding-top: 1px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
}

.book-grid {
  display: grid;
  gap: 60px;
  justify-content: center;
  place-items: center;
  align-content: center;
  max-width: 1240px;
}

@media (min-width: 500px) {
  .book-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 600px) {
  .book-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .book-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
