JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
<div class="item">
    
    </div>
</div>

CSS

.container{
    width:225px;
    height:225px;
    background-color:yellow;
    padding:25px;
    border-radius:5px;
}

.item{
    width:100px;
    height:100px;
    background-color:#FF4057;
    border-radius:3px;
    border:thin solid black;
    -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    position:absolute;
    top:25px;
    left:25px;
        
}