Within a container class, I have a background image set up and divided it into col-6. The first col-6 is currently empty. However, my goal is to add content on the right side of this column. I attempted to achieve this by adding the justify-content-end class but unfortunately, it did not work as expected. This resulted in the layout shown here: what I did. What I actually want to display is demonstrated here: what I expected.
<div class="main-contact">
<div class="container">
<div class="col-6">
</div>
<div class="col-lg-6 col-12 justify-content-end">
<div class="main-about-content">
<h3>Hayal Ettiğiniz Mobilya ile </h3><br>
<span>
Bahçenizi Tamamlayalım.
</span>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi
architecto beatae vitae dicta sunt explicabo.</p>
<a href="iletisim.html">Detaylı Bilgi</a>
</div>
</div>
</div>
</div>
.main-contact {
background-image: url(../img/Asset6.png);
background-size: cover;
background-repeat: no-repeat;
}
.main-about-content {
background-color: rgb(255,255,255, 0.3);
color: white;
padding: 65px 40px;
text-shadow: 0 0 10px black;
}