@font-face { font-family: Joystix; src: url('../fonts/joystix monospace.otf'); } 

.unselectable
{
    /*Stop highlighting*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectable
{
	-webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body
{
    margin: 0;
    font-family: Joystix;
}

#scores
{
    position: absolute;
    width: 100%;
    bottom: 0px;
    display: block;
}

#canvas
{
    z-index: -1;
}

.game h1,h2,h3,input
{
	text-align: center;	
	margin: 0 auto;
	display: block;
	color: white;
}

input
{
	outline-width: 0;
    border: 0px solid #000000;
    border-bottom-width: 4px;
    border-bottom-color: white;
    background-color: transparent;
	font-family: Joystix;
	font-size: 2vw;
	font-weight: bold;
	width: 25vw;
	text-align: left;
	color: #2e8a56;
	padding: 0px 4px 0px 4px;
}

input::selection
{
	background: #cc0000;
	color: #ffffff;
}		   

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.game {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.clickable:hover {
    color: #00CDCD;
    cursor: pointer;
}



#score{
    display: block;
    position: absolute;
    right: 2px;
    top: 2px;
}

#time {
    position: absolute;
    bottom: 0;
}

h1
{
    font-size: 7vw;
    cursor: default;
}

h2
{
    font-size: 2vw;

}

