JSFiddle - React, Tailwind, and code Playground

by Francisco Presencia Fandos

HTML

<div class = "sphere">Test</div>

CSS

body {
    background: #333;
}
.sphere {
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    margin: 100px auto;
    border-radius: 100%;
    box-shadow: inset 0 0 80px #FFF;
    color: #FFF;
}