JSFiddle - React, Tailwind, and code Playground

HTML

<div class="padded">
        all your content padded in here
</div>

CSS

* {
    margin: 0;
    padding: 0;
}

.padded{
    position: absolute;
    top: 50px;
    right: 50px;
    left: 50px;
    bottom: 50px;
    background-color: #aefebc;
}