/* gs01 */
/* gs02 */
/* gs03 */

* {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	background: indigo;
	color: white;
    height: 100%;
}

html, body, canvas {
	touch-action: none;
	touch-action-delay: none;
}

canvas {
    background: black;
    box-shadow: 0 0 5vmin 1vmin black;
}

.official-game-link {
	position: fixed;
	right: 12px;
	bottom: 12px;
	z-index: 2147483647;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	border: 2px solid rgba(255, 255, 255, 0.92);
	border-radius: 9px;
	background: rgba(17, 24, 39, 0.92);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
	text-decoration: none;
}

.official-game-link:hover,
.official-game-link:focus-visible {
	background: #2563eb;
	outline: 3px solid rgba(255, 255, 255, 0.8);
	outline-offset: 2px;
}

.official-game-link img {
	display: block;
	width: 22px;
	height: 22px;
}

#notSupportedWrap {
	margin: 2em auto 1em auto;
	width: 75%;
	max-width: 45em;
	border: 2px solid #aaa;
	border-radius: 1em;
	padding: 2em;
	background-color: #f0f0f0;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	color: black;
}

#notSupportedTitle {
	font-size: 1.8em;
}

.notSupportedMessage {
	font-size: 1.2em;
}

.notSupportedMessage em {
	color: #888;
}


