/* Styles the embedding needs. Load it next to observe-game.js; the page keeps saying how
   big its .observe-game containers are and what goes around them. */

.observe-game {
	position: relative;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.observe-game canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.observe-game canvas:focus {
	outline: none;
}

.observe-game-status {
	position: absolute;
	inset: 0;
	background-color: #242424;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.observe-game-splash {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: contain;
}

.observe-game-progress {
	position: absolute;
	bottom: 10%;
	width: 50%;
}

.observe-game-notice {
	background-color: #5b3943;
	border: 1px solid #9b3943;
	border-radius: 0.5rem;
	color: #e0e0e0;
	font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
	line-height: 1.3;
	margin: 0 2rem;
	padding: 1rem;
	text-align: center;
	white-space: pre-line;
	z-index: 1;
}

.observe-game-progress, .observe-game-notice {
	display: none;
}
