/********* GENERAL GRID *************************************/
/* maybe this isn't really that general as it has some sizing
   for the books */

.grid {
  margin: 0 auto;
  --width: 100%;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-item {
  width: 400px;
  float: left;
  margin-bottom: 60px;
  margin-right: 0px;
  margin-left: 0px;
  height:auto;
}

.grid-item-width2 {
  width: 400px;
}

.grid-item-width3 {
  width: 300px;
}

.grid-item:nth-child(8n) {
  transform: rotate(-0.5deg);
}
.grid-item:nth-child(5n) {
  transform: rotate(0.5deg);
}

.grid-item-overlay {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 40%;
  margin-right: 10px;
  font-family: "Special Elite", system-ui;
  font-size: 16px;
  font-weight: 100;
}

.grid-item-overlay-right {
  position: absolute;
  top: 55%;
  right: 20px;
  width: 40%;
  margin-right: 10px;
  font-family: "Special Elite", system-ui;
  font-size: 16px;
  font-weight: 100;
}

.book-cover {
  position: relative;
  bottom: auto;  
}

.book-note {
  position: relative;
  font-size: 16px;
  color: rgb(134, 134, 134);
  line-height: 120%;
  top: auto;
}

.book-note p {
  margin-bottom: 10px;
}

.book-note p:first-child {
  
}

.book-cover img {
  border-radius: 0%;
}

@media only screen and (max-width: 600px) {
  .grid-item {
    width: 350px;
  }
  .grid-item-width2 {
    width: 350px;
  }

  .grid-item-width3 {
    width: 250px;
  }

  .logo-twolines-tilt {
    display: none;
  }
}