body {
  padding: 0;
  margin: 0;
  background-color: #d3d3d3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  min-height: 100vh;
  background-image: url("../images/portraits/v1.png");
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #fac35e;
}

.texture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  background-image: url("../images/patterns/leather65.png");
  background-repeat: repeat;
}

.back-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  background-image: url("../images/patterns/white75.png");
  background-repeat: repeat;
}

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);

}

.background {
  display: block;
  position: absolute;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chapter-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 25px;
  width: 100vw;
}

.chapter-container>div {
  background-color: #f1f1f1;
  width: 286px;
  height: 242px;
  margin: 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.chapter-container>div>img {
  width: 286px;
  height: 242px;
}

.chapter-overlay {
  width: 286px;
  height: 242px;
  top: 0px;
  position: absolute;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, .7);
  opacity: 0;
}

.chapter-title {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display',
    serif;
  font-size: 40px;
}

.hvr-grow:hover .chapter-overlay {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.book-title {
  color: #000;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3),
    0px -1px 0px rgba(0, 0, 0, 0.7);
}

.book-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 22px;
  margin-top: 0px;
}

.book-title h1 span {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 22px;
}

.book-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 20px;
  margin-bottom: 0;
}

.book-title h2 span {
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}