JSFiddle - React, Tailwind, and code Playground
by Scott Kaye
HTML
<div></div>
CSS
div {
width: 200px;
height: 200px;
background: #B68E2A;
border-radius: 50%;
margin: 100px;
box-shadow: 0 0 50px #B68E2A;
animation: pulse 3s ease infinite;
}
@keyframes pulse {
50% {
box-shadow: 0 0 150px 25px #B68E2A;
}
}
body {
background: #18415D;
}