result photo and required modifications
The image on the left shows the result I obtained in a browser, while the one on the right displays the desired outcome in Figma. I am struggling with creating a semicircle with a shadow under the coin and implementing a hover effect like the one shown on the right.
.currencies_block {
position: relative;
margin-bottom: 7rem;
padding: 9.3rem 2rem 2.5rem;
text-align: center;
background-color: #fff;
box-shadow: 0 0 2rem rgba(0, 0, 0, 0.15);
border-radius: 1rem;
}
.currencies_i_w {
position: absolute;
top: -50%;
left: 50%;
transform: translateX(-50%);
background-color: #C4C4C4;
border-radius: 50%;
}
.currencies_text_w p {
margin-bottom: 0;
}
<div class="row row-cols-1 row-cols-md-4 g-5 justify-content-center">
<div class="col">
<div class="currencies_block">
<div class="currencies_i_w">
<img src="../assets/images-coins/bitcoin-2.png" alt="Bank transfers" class="currencies_i" />
</div>
<div class="currencies_text_w">
<p class="currencies_text">Bitcoin (BTC)</p>
</div>
</div>
</div>
<div class="col">
<div class="currencies_block">
<div class="currencies_i_w">
<img src="../assets/images-coins/ethereum.png" alt="NGN deposits" class="currencies_i" />
</div>
<div class="currencies_text_w">
<p class="currencies_text">Ethereum (ETH)</p>
</div>
</div>
</div>
</div>