I am attempting to design two panels in Bootstrap with centered text and different fonts. Similar to the layout shown in the image below
https://i.sstatic.net/aVGwV.png
Here is my code:
<div class="row">
<div class="col-lg-6">
<div class="panel panel-default text-center shadowed">
<p>
Collected This Quarter <br>
<b>$8084</b>
</p>
</div>
</div>
<div class="col-lg-6">
<div class="panel panel-default text-center shadowed">
<p>
Average Property Income YTD <br>
<b>$16,985</b>
</h4>
</div>
</div>
</div>
However, the output I'm getting looks like this:
https://i.sstatic.net/OfbSp.png
Any suggestions on how I can achieve the "shadow" effect outside the panels and have the text inside with a font similar to the image above?
Thank you