html,
body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}
body {
	overscroll-behavior: contain;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

	background: rgb(0, 0, 0);
	background: linear-gradient(
		335deg,
		rgb(47, 47, 47) 0%,
		rgba(0, 0, 0, 1) 100%
	);
}
canvas {
	padding: 0;
	margin: auto;
	display: block;
	position: absolute;
	object-fit: contain;
	object-position: center;
	top: 0;
	left: 0;
	width:2160px;
	height: 2160px;
	max-width: 100vw;
	max-height: 100vh;
	/****/
}
.overlay {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: linear-gradient(
		335deg,
		rgb(47, 47, 47) 0%,
		rgba(0, 0, 0, 1) 100%
	);
	z-index: 999;
}
.overlay img {
	object-fit: contain;
	object-position: center;
	max-width: 50px;
	border-radius: 999px;
}
