.leadership-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Adjust spacing between names */
  max-width: 600px; /* Optional: Sets a max width for the container */
}

.name-item-leader {
  flex: 1 1 45%; /* Sets the item's flexibility and base width */
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.2em; /* Makes the font slightly larger */
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px; /* Adjust spacing between names */
  max-width: 600px; /* Optional: Sets a max width for the container */
}

.name-item {
  flex: 1 1 30%; /* Sets the item's flexibility and base width */
  text-align: center;
  padding: 11px;
  box-sizing: border-box;
  font-size: 1.06499999em; /* Makes the font slightly larger */
}