JSFiddle - React, Tailwind, and code Playground

by afshinprofe

HTML

<div class="box"></div>

CSS

body{
background-color:white;
}
.box{

   width: 500px;
    height: 200px;
    background-color: white;
    margin: auto;
    margin-top: 100px;
    box-shadow: 0px -8px 30px 4px #CCCCCC;
    -webkit-box-shadow: 0px -8px 30px -5px #CCCCCC;
    -moz-box-shadow: 0px -8px 30px -5px #CCCCCC;

}