JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <div id="image">
    </div>
</div>

CSS

html {
    overflow:hidden;
}

#container{
    max-width:1000px;
    margin:0 auto;
}

#image{
    position:absolute;
    margin-left: -200px;
    width:500px;
    height:400px;
    background-image:url(http://i.imgur.com/gc71pAW.jpg);
    left:50%;
}