.subtitle {
	font-family: "SEGOE UI", "Helvetica Neue", Arial, sans-serif;
	font-style: italic;
	text-align: center;
	color: #003f7f;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-top: 0px;
	padding-top: 0px;
}
.flex-container {
  display: flex; /* Establishes a flex container */
  /* flex-direction: row; is the default and optional */
  /* flex-wrap: nowrap; is the default and optional */
  justify-content: space-around; /* Distributes space between and around items */
}

.flex-item {
  flex: 1; /* Makes items grow to fill available space equally */
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 5px; /* Adds spacing between items */
}
