Yes, of course I'll share my solution.
I am learning to use display: flex for responsive pages, and started by looking CSS within bootstrap.
However, the landing page for "learn.microsoft.com" has a really smooth way of shrinking the size of the page,
and I was so impressed I looked at their code. It looks to me that they did their own "bootstrap" if you will.
I discovered that there's one particular line I think is really effective:
width: calc(100% - 15%);
max-width: calc(100% - 15%);
If you put this inside a @MEDIA block, screen sizes will transition very smoothly, and can be used for any size width.
I thought it was a great help!!