I'm a beginner when it comes to using bootstrap and I'm having trouble adjusting the font size of my application's title. While I was able to change the color of the text, I can't seem to find where the font-size property is located for the title. Additionally, the title is currently positioned to the left of the navbar and I would like it to be aligned in the center. I tried modifying the code snippet below, but it only changed the text color to orange.
.navbar-inverse .navbar-text {
color: orange;
font-size:24px;
font-weight:bold;
text-align:center;
}