body {
  margin: 0;
  font-family: Georgia, serif;
}

.journal {
  width: 100vw;
  height: 100vh;

  background: url("images/journal.png") no-repeat center center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
}

/* Each book row */
.book-entry {
  display: flex;
  align-items: flex-start;
  width: 60%;
  margin-bottom: 60px;
}

/* Book cover */
.book-cover {
  width: 120px;
  margin-right: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

/* Text info */
.book-info h2 {
  margin: 0;
  font-size: 22px;
}

.rating {
  color: #c59d5f;
  margin: 5px 0;
  font-size: 18px;
}

.review {
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}