.hub-title {
  font-size: clamp(40px, 5vw, 48px);
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: var(--main-txt-color);
  margin: 40px 0 10px; /* Combined margin-top and margin-bottom */
}

.hub-tiles.column-container {
  max-width: 1160px;
  width: 100%;
  display: flex; /* Simplified flexbox display, modern browsers support it */
  flex-direction: column; /* Set the direction directly */
  justify-content: flex-start; /* Align items at the start */
  position: relative;
  margin: 50px auto;
}
<!-- CSS -->
<style>
  .title {
    color: inherit; /* Default styling */
  }

  /* Target all instances of "All Options" */
  .title:contains('All Options') {
    color: white; /* Make the text white */
  }
</style>