/*  Site-specific styles */

/* added to put book images in center of display box rather than left aligned 
   not sure what implications that might have for other images in rotators
   but as they are typically the full width of the containing object
   shouldn't be a big problem
*/
.rotator figure img {
    margin-left: auto;
    margin-right: auto;
}

/* here in case we decide to use a grid layout for the book covers instead of 
   an image rotator
.grid-container {
  display: grid;
  grid-template-columns: repeat(2);
  grid-column-gap:10px;
  grid-row-gap:10px;
}
*/