@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");

html,
body {
	background-color: #f2f2f2;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
	font-family: "Outfit", sans-serif;
}

div#gameContainer {
	background: transparent !important;
	position: absolute;
}

div#gameContainer canvas {
	position: absolute;
}

div#gameContainer canvas[data-pixel-art="true"] {
	position: absolute;
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}

.mobile-message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	font-size: 32px;
	color: #333;
	padding: 20px;
}
#unity-container {
	z-index: 5;
	display: none;
}
.mobile-message img {
	margin-top: 20px;
	max-width: 70%;
	height: auto;
	padding: 20px;
}
