/* Titel styling */
h5 {
  color: var(--color-body-text); /* of wit als dat beter past: #ffffff */
  margin-bottom: 4rem;
  font-family: var(--font-base);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

h5::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  margin: 1rem auto 0;
  border-radius: calc(var(--border-radius) / 2);
}
