I am having trouble making the button within a semi-transparent caption area over an image non-transparent. Any suggestions on how to achieve this?
<div class="col-md-12 landing-container">
<img src="images/pig.jpg" class="main-image" width="70%">
<div class="uvp">
<h1>Spread Compassion & Track Your Impact</h1>
<button class="join-button">Join Now</button>
</div>
</div>
.uvp {
background: rgb(66,51,51);
opacity: .8;
...
}
.uvp h1 {
color: #fff;
...
}
.join-button {
background: rgb(48, 118, 213);
...
}