JSFiddle - React, Tailwind, and code Playground

by tjerabek

HTML

<div class="container">
<h1>This is paper!</h1>
</div>

CSS

body{
    padding: 80px;
    font-family: Arial;
    background: #1e1e1e;
}
h1{
    font-size: 600%;
    font-family: Georgia;
    font-weight: bold;
    padding: 50px;
    color: #1e1e1e;
    text-shadow: 0px 4px 0px #cfcfcf;
}

.container {
width:500px;
position:relative;
background:#ffffff;
border:1px solid #eeeeee;
}
.container:before {
    content:"";
    width:490px;
    height:6px;
    position:absolute;
    bottom:-4px;
    left:5px;
    background:#fff;
    border:1px solid #eeeeee;
}

.container:after {
    content:"";
    width:480px;
    height:6px;
    position:absolute;
    bottom:-8px;
    left:10px;
    background:#fff;
    border:1px solid #eeeeee;
}