I am facing a challenge with 4 buttons in 4 different cards that have varying text sizes. I need to ensure that the buttons stay at the bottom regardless of the amount of text I input in the cards.
<div class="pricing-block">
<div class="pricing-cards">
<b class="pricing-tittle">Unlimited</b>
<p class="pricing-description">79$</p>
<p class="pricing-features">Feature 1</p>
<p class="pricing-features">Feature 2</p>
<p class="pricing-features">Feature 3</p>
<p class="pricing-features">Feature 4</p>
<p class="pricing-features">Feature 5</p>
<button type="button" class="pricing-button">Purchase</button>
</div>
</div>
.pricing-block{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-evenly;
}