JSFiddle - React, Tailwind, and code Playground

HTML

<div class="awesome">
  It's surrounded by guards and video monitors and little families from Iowa and little kids on their eighth grade field trips.  
</div>

CSS

body {
    background-color: rgb(0,0,0);
}
.awesome {
    background-color: rgb(255,255,255);
    margin-top: 100px;
    padding: 10px;
    
    border-top: 4px solid rgb(0,130,202);
    box-shadow:
        inset 0 -8px 4px 4px rgb(255,255,255),
        inset 0 2px 4px 0px rgba(50, 50, 50, 0.75);
}