@font-face {
	font-family: font;
	src: url(font.ttf);
}
@keyframes throb {
	from {trasnform:scale(90%,110%);}
	to {transform:scale(110%,90%);}
}
@keyframes rainbow {
	from {filter:hue-rotate(0deg);}
	to {filter:hue-rotate(360deg);}
}
* {
	text-align: center;
	font-family: font;
}
body {
	background: #ffb;
}
button {
	border-radius: 5px;
	border: 2px ridge white;
	background: yellow;
	font-size: 30px;
	transition: 0.5s;
}
button:hover {
	font-size: 35px;
	background: orange;
}
.bingleton {
	position: absolute;
	left: 10px;
	top: 10px;
}
.bingleton:hover {
	animation: throb .5s infinite alternate ease-in-out;
}
span {
	color: hotpink;
	animation: rainbow 2s infinite linear;
}
.link {
	color: hotpink;
	filter: grayscale(100%);
	text-decoration: none;
}
.link:hover {
	animation: rainbow 1s infinite linear;
}