JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

* {
    margin: 0;
    padding: 0;
}
.bb{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;     
}
.padded{
    width: 100%;
    height:200px;
    padding: 50px;
    background-color: #aefebc;
}