:root {
	--loading-background: black;
	--loading-text: white;
}


html, body {
	font-family: arial;
	padding: 0;
	margin: 0;

	color: var(--loading-text);
	background-color: var(--loading-background);
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	height: 100%;
}

.love-desktop-frame {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
}

.love-desktop-frame:-webkit-full-screen {
	/* Auto width and height in Safari/Chrome fullscreen. */
	width: auto;
	height: auto;
}

#canvas {
	outline: none;
	vertical-align: bottom;
	border: 0;
	position: fixed;
	background-color: var(--loading-background);
	width: 100%;
	height: 100%;
}

#message-container {
	text-align:center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
}

#progress-border {
  	border: 1px solid var(--loading-text);
}
  
#progress-bar {
	background-color: var(--loading-text);
  	width: 0%;
   	height: 16px;
}

#message-container > div {
  	background-color: transparent;
}

#play-overlay {
	background-color: var(--loading-background);
	width: 100%;
	height: 100%;
	position: relative;
}

#play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 74px;
	border-style: solid;
	border-width: 37px 0px 37px 74px;
	border-color: transparent transparent transparent var(--loading-text);
	box-sizing: border-box;
}
