body {
  background: black;
  color: white;
  padding: 10px;
}

.container {
  max-width: 80%;
  margin: 0 auto;
}

.books {
  padding-left: 0;
}

.books > li {
  list-style: none;
}

.chapters {
  padding-left: 0;
}

.chapters > li {
  list-style: none;
  display: block;
  float: left;
  background-color: #222;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
  min-height: 265px;
}

.moments {
  padding-left: 0;
  margin-right: -20px;
}

.chapters:after,
.moments:after {
  content: " "; /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.moments > li {
  background-color: #222;
  list-style: none;
  float: left;
  margin-right: 20px;
  width: 150px;
  text-align: center;
}

.moments > li img {
  transition: 0.2s linear transform;
}

.moments > li:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 10px 6px black;
}

.moments > li:hover h4 {
  font-weight: bold;
}

.moments h4 {
  color: #eee;
  font-weight: normal;
}

.moments img {
  height: 120px;
  width: 150px;
}

.moments a {
  color: white;
  text-decoration: none;
}

/*.moments a:hover {
  text-decoration: underline;
}
*/
