I have a section that stretches across the width of the screen, but the text inside is contained within a container and aligns correctly.
Below that section is a two-column layout, and I'm trying to align the text in the left column with the text above it, but I haven't been successful so far.
Here is the current output:
https://i.sstatic.net/XZ8i6.png
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<section id="">
<div class="d-flex align-items-center bg-primary" style="min-height: 450px">
<div class="container">
<h1 class="">TITLE TEXT</h1>
</div>
</div>
</section>
<section id="">
<div class="subhead bg-primary">
<div class="row">
<div class="col-sm bg-secondary" style="min-height: 400px">
<div class="container">
<h3>TITLE</h3>
</div>
</div>
<div class="col-sm bg-warning" style="min-height: 400px"></div>
</div>
</div>
</section>
The HTML code I'm currently struggling with (the CSS was added within the HTML for testing purposes)
Thank you for any assistance provided, and please let me know if you need any additional information.