JSFiddle - React, Tailwind, and code Playground

by Drath

HTML

<div class="back"></div>
<div class="circle"></div>
<div class="back-2"></div>

CSS

* {
    background: #ccc;
}

.circle, .back, .back-2 {
    position: absolute;    
    top: 0;
    background: #fff;
    box-shadow: 0 0 5px #333;
}

.back, .back-2 {
    height: 100px;
    width: 100%;
    box-shadow: 0 0 5px #333;
    z-index: 0;
}

.back-2 {
    box-shadow: none;
    z-index: 2;
}

.circle {
    height: 200px;
    width: 200px;
    border-radius: 200px;
    left: 50%;
    z-index: 1;
}