body {
  background-image: url("/assets/catpixel.png") ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  /*width: 90%;*/
  /*display: grid;*/
  /*
  justify-content: center;
  align-items: center;
  */
  padding-top: 20px;
    
  margin-left: 5%;
  margin-right: 5%;
  
  font-family: Verdana;
}
directory{
  grid-row: 1 / 6 ;
  grid-column: 1 / 2;
}

.anime-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 40% /* How 'tall' each review is */
  
}

.review {
  padding: 1em;
  overflow: auto;
  text-align: center;
}

.review .review-title {
  width: 100%; /* Should make sure the image stays below the heading, might not be necessary? */
}

.review .review-image {
  text-align: center;
}

.review .review-text {
  text-align: justify;
}