html, body {
	background: #2e2e2f;
	width:100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-weight: bold;
}

div.container {
}

div.button {
	position: relative;
	background: darkslategrey;
	color: white;
	max-width: 200px;
	padding: 120px 40px;
	position: fixed;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	text-align: center;
	border-radius: 20px;
	box-shadow: rgba(0,0,0,.5)0px 25px 20px -10px;
	transition-property: all;
  	transition-duration: 400ms;
  	transition-delay: 3600ms;
  	transition-timing-function: linear;
}

div.button:active{
	background: seagreen;
	transition-property: box-shadow;
  	transition-duration: 50ms;
  	transition-delay: 0s;
	box-shadow: rgb(0 100 45 / 60%) 0px 5px 30px 0px;
} 

div.button span {
	pointer-events: none !important;	
	font-size: 30px;
	line-height: 40px;
}