css shadow generator

CSS
.element {
    /* https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow  */
  
 	/* offset-x | offset-y | blur-radius | spread-radius | color */
 	-webkit-box-shadow: 0px -1px 30px -2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px -1px 30px -2px rgba(0,0,0,0.75);
	box-shadow: 0px -1px 30px -2px rgba(0,0,0,0.75); 
}/* Answer to: "text shadow css generator" */

/*
  You can check out all the Text Shadow CSS Generators below, but
  my personal favourite, is this one:
  https://html-css-js.com/css/generator/text-shadow/
*/shadowColor: "#000",
shadowOffset: {
	width: 0,
	height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,

elevation: 5,
Source

Also in CSS: