I am facing a challenge with a container that needs to have a maximum width of 960px. Inside this container, there is a row with a maximum width of 928px, housing two columns. The left column has a max-width of 576px and the right column has a max-width of 352px. How can I center these two columns so they are perfectly aligned in the middle of the container? And what is the trick with Bootstrap 4?
<div class="d-flex justify-content-center align-self-center" style="max-width: 960px;">
<div class="container" style="max-width:960px;">
<div class="row" style="max-width:928px;">
<div class="col" style="max-width:576px;">
... data ...
</div>
<div class="col" style="max-width:352px;">
... data ...
</div>
</div>
</div>
</div>
To illustrate my issue and desired end result, I have created two images. Your assistance with achieving the desired outcome would be greatly appreciated.
Current Situation
Desired Result