﻿html {
	-webkit-user-select: none;
	-webkit-text-size-adjust: none;
	position: fixed;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: silver;
}
body {
	background: #000;
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: block;
}
canvas {
	width: 100%;
	height: 100%;
	z-index: 0;
}
/* Title */
.overlay1 {
	position: absolute;
	top: 0;
	left: 2%;
	width: 90%;
	height: 10%;
	font-family: Courier;
	font-size: 24pt; 
	color: white;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	font-weight: bold;
	z-index: 1;
}
/* Data */
.overlay2 {
	position: absolute;
	top: 10%;
	left: 2%;
	width: 40%;
	height: 90%;
	font-family: "Courier New";
	font-size: 14pt; 
	color: white;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	font-weight: bold;
	z-index: 1;
}
/* Instructions */
.overlay3 {
    position: absolute;
	top: 2%;
	left:65%;
	width: 35%;
	height: 30%;
	font-family: Courier;
    font-size: 12pt;
    color: black;
	z-index: 1;
}
#blocker {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
#instructions {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: box;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	box-orient: horizontal;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	box-pack: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	box-align: center;
	color: #ffffff;
	text-align: center;
	font-family: Courier;
	font-size: 14px;
	line-height: 24px;
	cursor: pointer;
}
