JSFiddle - React, Tailwind, and code Playground

by imys

HTML

<div>
  <span>5</span>
  <span>0</span>
  <span>0</span>
</div>

CSS

div {
  width: 300px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-weight: bold;
  box-shadow: inset 0 -10px 60px 0 #666;
}
div span {
  position: relative;
  font-size: 100px;
  text-align: center;
  color: #6eadb6;
  text-shadow: 3px 2px 2px #50969f;
}
div span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 2px;
  box-shadow: 0px 10px 10px 0 #333;
}