I'm trying to make a lined title with flexbox. It works but the text in the title goes to the next line, which is not what I want - it should all stay in one line.
.hr {
  width: 100%;
  display: flex;
  align-items: center;
}
.line {
  height: 3px;
  background: red;
  display: inline-block;
  width: 100%;
}<div class='hr'>
  <div class='title'>
    Apes are cool animals
  </div>
  <div class='line'></div>
</div>
<div class='hr'>
  <div class='title'>
    Aren't they?
  </div>
  <div class='line'></div>
</div>Expected Result: https://i.gyazo.com/3164ae24d7fd2402fa711126d04319b1.png
 
     
     
    