I attempted to use this method for vertically centering all elements within a Jumbotron:
display: flex;
justify-content: center;
align-items: center;
However, I encountered an issue where all the elements were aligned in a single line as if they were displaying inline. How can I adjust this to center them vertically while still keeping them displayed in a block format?