@font-face {
	font-family: 'PawFont';
	src: url("Cattie-Regular.ttf");
}

body {
	font-family: PawFont;
	overflow: hidden;
	margin: 0;
	cursor: none;
	background-color: lightblue;
}
#paw {
	width: 150px;
	height: 150vh;
	background-color: lightslategray;
	border-radius: 100vmin;
	display: flex;
	justify-content: center;
	position: relative;
	opacity: 0.9;
	z-index: 2;
}
.pad {
	width: 30px;
	height: 40px;
	background-color: pink;
	border-radius: 10vmin;
	margin: 5px;
	margin-top: 20px;
}
.pad:nth-child(1) {
	rotate: -30deg;
	translate: 5px 40px;
}
.pad:nth-child(4) {
	rotate: 30deg;
	translate: -5px 40px;
}
.center {
	width: 45px;
	height: 60px;
	background-color: pink;
	border-radius: 100vmin;
	position: absolute;
	left: 50%;
	translate: -50% 70px;
}

.content {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
button {
	cursor: none;
	width: 300px;
	height: 300px;
	border-radius: 100vmin;
	border: none;
	background-color: lightcoral;
	color: white;
	font-size: 4rem;
	box-shadow: 0 10px 0px pink;
	transition: 0.2s;
	font-family: inherit;
}
button > small {
	font-size: 1.5rem;
	display: block;
}
button.click {
	box-shadow: 0 0 0;
	translate: 0 10px;
}