body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.emoji {
    font-size: 186px;
    z-index: 1;
    transition: transform .7s ease-in-out;
}

.rotate:hover {
    background-color: transparent;
    transform : rotate(360deg);

  }


button {
	width: 165px;
	height: 62px;
	cursor: pointer;
	color: #fff;
	font-size: 17px;
	border-radius: 1rem;
	border: none;
	position: relative;
	background: #100720;
	transition: 0.1s;
  }
  
  button::after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
	filter: blur(15px);
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
  }
  
  button:active {
	transform: scale(0.9) rotate(3deg);
	background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
	transition: 0.5s;
  }