JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <div class="bg-left">
        <div class="bg-right">
            <div class="main-content">

            </div>
        </div>
    </div>
</body>

CSS

body {
    background-color: #171717;
    margin: 0;
}

.bg-left {
    background: url('http://cdn.imghack.se/images/800977ada2cda4117a855e71792eb259.png') top left no-repeat;
}

.bg-right {
     padding: 0 118px 0 125px;
     background: url('http://cdn.imghack.se/images/ae53c28777043687b9a110e867798cb5.png') top right no-repeat;  
}

.main-content {
    height: 800px;
    background-color: white;
}