.hof-content-image-left {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 4em;
}

.hof-content-flavor {
  display: grid;
  grid-template-rows: auto auto 1fr;
  margin-left: 2em;
}

.hof-image {
  display: block;
  margin: auto;
  border-radius: 50%;
  width: 10em;
}

.hof-roles {
  margin-top: 0;
  font-size: 0.875em;
  color: #767676;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {

  /* Famed peoples' roles */
  .hof-roles {
    color: #BABABA;
  }
}

/* Any screen less than or equal to 449 pixels in width */
@media screen and (max-width: 449px) {

  /* Converts the grid into 1 column */
  .hof-content-image-left {
    grid-template-columns: auto;
    margin-top: 6em;
  }

  /* Removes some now defunct grid styling */
  .hof-content-flavor {
    margin-left: 0;
  }

  /* Centers the famed peoples' name and allows word breaking */
  .hof-content-flavor h2 {
    width: fit-content;
    margin: 0 auto;
    word-break: break-all;
  }
}