JSFiddle - React, Tailwind, and code Playground

by msingh

HTML

<div class="container">
    <div class='ovalCutout'></div>    
</div>

CSS

.container{
    height: 10em;
    background: #76757e;
}

.ovalCutout{
    background:white;
    height:50px;
    width:100px;
    border-radius:50%;
    margin:0px auto;
    position:relative;
    top:120px;
}