I tried centering the h1 using mt-50, but it doesn't give me a margin between the red border and blue border. However, when I use CSS styling of margin-top:50px it gave me the desired outcome. Can anyone explain the difference, as I thought mt-50 in bootstrap is the same as margin-top:50px in CSS?
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<div class="header my-5 border border-danger">
<h1 class="col-6 border border-primary mx-auto text-center mt-50"> Welcome to Food Mart </h1>
</div>