@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

*
{
	margin: 0;
	font-family: 'Rubik', sans-serif;
	padding: 0;
	box-sizing: border-box;
}
body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	flex-direction: column;
	background: #111;
}
a
{
	position: relative;
	width: 180px;
	height: 60px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	line-height: 60px;
	letter-spacing: 2px;
	margin: 20px;
	transition:0.5s;
}
a:hover
{
	background: #ec0b36 url(pixel.png);
	transition-delay: 0.8s;
	background-size: 180px;
	animation: animate 0.8s steps(8) forwards;
}a:nth-child(2):hover
{
	background: #730bec url(pixel2.png);
	transition-delay: 0.8s;
	background-size: 180px;
	animation: animate 0.8s steps(8) forwards;
}

@keyframes animate
{
	0%
	{
		background-position-y: 0;
	}
	100%
	{
		background-position-y: -480px;
	}
}
h2, h3
{
	color: #FFF
}