body, html{
	background-color: #2f2f2f;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
}

*{
	color: #ff963b;
}

span{
	position: relative;
	display: inline-block;
	width: 70px;
	height: 80px;
	padding: 8px 15px;
	margin: 8px 4px;
	border-radius: 10px;
	background: linear-gradient(180deg, #282828, #202020);
	box-shadow: inset -8px 0px -8px rgba(0,0,0,0.15), inset 0 -8px -8px rgba(0,0,0,0.25), 0 0 0 2px rgba(0, 0, 0, 0,75),10px 20px 25px rgba(0,0,0,0.4);
	transition: .1s;
}

span::before{
	content: '';
	position: absolute;
	top: 3px;
	left: 4px;
	bottom: 14px;
	right: 12px;
	background: linear-gradient(90deg, #232323, #4a4a4a);
	border-radius: 10px;
	box-shadow: -10px -10px -10px rgba(255, 255, 255, 0.25), 10px 5px 10px, rgba(0,0,0,0.15);
	border-left: 1px solid #0004;
	border-bottom: 1px solid #0004;
	border-top: 1px solid #0009;
}

span i{
	position: relative;
	color: white;
	background: linear-gradient(90deg, #ff0000, #ffff00, #ff00f3, #0033ff, #ff00c4, #ff0000);
	background-size: 400%;
	font-family: sans-serif;
	letter-spacing: 10px;
	font-weight: 600;
	word-spacing: 5px;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: animate 10s linear infinite;

	font-style: normal;
	text-transform: uppercase;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none

}

span:active{
	margin-top: 15px;
}

@keyframes animate{
	0%{
		background-position: 0%;
	}
	100%{
		background-position: 400%;
	}
}