.container {
  display: flex;
  align-items: center; /* Vertical centering */
  gap: 10px; /* Space between text and lines */
}

.line {
  flex: 1; /* Take remaining space */
  height: 1px; /* Line thickness */
  background: #000; /* Line color */
}

.text {
  padding: 0 10px; /* Add space around text */
}