JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrapper">
<div class="box"></div>
<div class="box"></div>
</div>
CSS
.box {
width: 45px;
color: #ffffff;
height: 50px;
display: inline-block;
-webkit-box-shadow: 0px 0px 8px 0px #000000;
-moz-box-shadow: 0px 0px 8px 0px #000000;
box-shadow: 0px 0px 8px 0px #000000;
background-color:#666;
border-radius:15px;
}
#wrapper{
text-align: center;
}