I'm trying to put a small icon on the bottom right corner and I need it to be responsive depending on whether it's a pc or or mobile.
<style>
.tdlr{
background-image: url('img/TLDRback.png');
border-radius: 15px;
padding-top: 150px;
margin-top: 100px;
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 450px;
}
.btmRght {
height: 70px;
width: 70px;
position: absolute;
right: -10px;
bottom: 0;
}
</style>
<section class="container-fluid text-center ">
<div class="tdlr"> <img class="btmRght" src="img/TLDRbottomright.jpg" alt="">
</div>
</section>