Is there a way to align text buttons both to the left side and right side using bootstrap? I have included a screen and code below. I apologize if this question seems simple, but I am new to this field. I would like to know how to achieve this, and it would be great if the background image could also be responsive on mobile devices after these changes.
.graphics {
background: url("img/graphics.png"); /* graphic design block */
background-position: center center;
background-size: cover;
font-family: Lato;
color: white;
margin-top: 10px;
text-align: right;
padding: 100px 0px;
}
.btn-primary {
background-color:#090045;
margin-right:350px;
border-radius: 0;
border-width: thin;
}
<div class = "graphics">
<h2>Graphic Design</h2>
Lorem ipsum...
<a class="btn btn-primary btn-md" href="#graphic-design">See More</a>
</div>
Current Look: https://ibb.co/Brz8S4K
Desired Look: https://ibb.co/tm4HCdf