How to make the Neumorphism effect in WordPress?

Neumorphism (or Neo-skeuomorphism) is a modern iteration of a style of designing web elements, frames, screens, etc. known as Skeuomorphism. SO, Neumorphism is a witty (right?) combo of the words “New” and “Skeuomorphism”. Since “New” isn’t a new word to us, let’s look at “Skeuomorphism” –Sources

				
					selector{
    border-radius: 10px;
background: #e0e0e0;
box-shadow:  -20px 20px 60px #bebebe,
             20px -20px 60px #ffffff;
}
				
			
				
					border-radius: 50%;
background: #e0e0e0;
box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;