#customPageTitle {
  display: none;
}

.centeredContent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 95% !important;
  margin: 4rem auto;
  gap: 2rem;
}

.centeredContent a,
.centeredContent img {
  width: 100%;
  height: auto;
  text-align: center;
}

.centeredContent h2 {
  margin-top: 10px;
  line-height: 16px;
}

.centeredContent h2:hover {
  font-weight: 600;
  font-size: 1.4rem;
}

@media screen and (max-width: 1100px) {
  .centeredContent {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5.5rem;
  }
}