html, body {
	margin: 0;
	height: 100%;
	width: 100%;
	background: #60a4a6;
	color: #fff;
}

header {
	width: 100%;
	padding-bottom: 25px;
	flex-direction: column;
}
p {
    font-size:32px;
    text-align:center;
}
img {
	width: 90vw
	height: auto;
	border-radius:80px;
	border:8px solid Orange;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

button {
	--gradient:#f44, #e74, #cb3, #5c5, #5ca, #78e, #d6d;
	background: linear-gradient(90deg,
		var(--gradient),var(--gradient),var(--gradient));
	/* It actually scrolls from the second gradient to the third so the left and right edges aren't fkted up */
	background-size:600%;
	outline:0;
	padding:.2em .5em;
	border-radius:.2em;
	font-size:72px;
	border:none;
	color:#fff;
	opacity:.8;
	position:relative;
	z-index:2;
	box-sizing:border-box;
	animation:scrollbg linear 6s infinite;
	transition:.2s ease;
	filter:saturate(.6);
	cursor:pointer;
	display:block;
	position:relative;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
}
@keyframes scrollbg {
	0% {
		background-position:33.333333333333333% 0%;
		/* Second gradient ((600%/3) / 600%) */
	}
	100% {
		background-position:75% 0%;
		/* Third gradient + half width ((600%/3 * 2 + 50%) / 600%) */
	}
}
@keyframes dundundun {
	0% {
		transform:scale(1.05) rotate(1deg);
	}
	50% {
		transform:scale(1.0);
	}
	50.01% {
		transform:scale(1.05) rotate(-1deg);
	}
	100% {
		transform:scale(1.0);
	}
}
button:hover {
	color:#fff;
	animation:scrollbg linear 6s infinite, dundundun linear 1.3s infinite;
	filter:saturate(1);
	opacity:1;
}
button:active {
	color:#fff;
	animation:scrollbg linear .5s infinite;
	filter:saturate(1);
	transform:scale(1.1);
	opacity:1;
}
button:before {
	background-color:var(--bgColor);
	content:'';
	position:absolute;
	left:.1em;
	top:.1em;
	width:calc(100% - .2em);
	height:calc(100% - .2em);
	border-radius:.1em;
	z-index:-1;
}
button:active:before {
	opacity: .8;
}
button:after {
	background:inherit;
	content:'';
	position:absolute;
	left:.2em;
	top:.2em;
	width:calc(100% - .4em);
	height:calc(100% - .4em);
	filter:blur(32px);
	opacity:0;
	border-radius:.1em;
	z-index:-2;
}
button:hover:after {
	opacity:1;
}
button:active:after {
	opacity:1;
	filter:blur(48px);
}