JSFiddle - React, Tailwind, and code Playground

HTML

<div class="one">
    <div class="two">
        <div class="three">
            <div class="inner"></div>
        </div>
        <div class="three">
            <div class="inner"></div>
        </div>
        <div class="three">
            <div class="inner"></div>
        </div>
    </div>
</div>

CSS

.one {
    width: 500px;
    height: 500px;
    background: url('http://www.moonlightcompanies.com/wp-content/uploads/2013/01/6973_MOONF-PomegranatesOnTree-8536-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
}
.two {
    width: 300px;
    height: 400px;
    padding: 10px;
    background: transparent;
}
.three {
    background: transparent;
    border: solid blue;
    margin: 10px 0px;
    border-width:20px 40px 40px 20px;
}
.inner {
    outline: 5px solid yellow;
    width: 200px;
    height: 60px;
    margin:0;
    padding: 20px;
    background: transparent;
}