I'm struggling to get 2 divs placed side by side. It seems like a simple task, but my divs keep collapsing no matter what I try. Even when I expand the screen, they refuse to stay in place. I've successfully done this before, so I know it should work. Can someone please double-check my approach. Using Bootstrap 4.4.1
<div class="row justify-content-center">
<div class="col-5" style="background-color:red">
<p>Select your Wi-Fi Network</p>
</div>
<div class="col-5" style="background-color:blue">
<p>Select your Wi-Fi Network</p>
</div>
</div>