Remember that this also sets the word-spacing property for any elements within .container
so you will have to reset the css word-spacing property for those elements.
Now you might think this is no good because you have already set the margin property on the inline elements to center them on the screen. You can still set the margin right property to create space between inline elements like so:
Note that with this method you can't use margin:15px auto; etc to center the inline items because that will change the spacing between. Instead use justify-content:center;
to center the inline items horizontally.