*,
*::before,
*::after {
	box-sizing: border-box;
	user-select: none;
}

body {
	margin: 0;
	margin-top: 20px;
	padding: 0;
	background-color: rgb(37, 37, 37);
	color: antiquewhite;
	font-family: system-ui, Arial, Helvetica, sans-serif;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	color: darkolivegreen;
	font-size: 50px;
}

p {
	color: goldenrod;
	font-size: medium;
	font-weight: bold;
}

#gameInfo {
	color: gold;
	font-size: large;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.catState {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px;
	gap: 1rem;
}

button {
	font-size: large;
	background-color: pink;
	border-radius: 5rem;
	padding: 5px 10px;
}

.cat {
	width: 250px;
	height: auto;
	filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.2));

	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: pixelated;

	animation: bob 2.5s ease-in-out infinite;
}

.hide {
	display: none;
}
