*{
	font-family: 'Press Start 2P', cursive;
}
body,html{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	max-width: 100vw;
	max-height: 100vh;
	background: #2f41a7;
	cursor: url(assets/web/cursor.svg), auto; 
}
a{
	cursor: url(assets/web/pointer.svg), auto;
}
header{
	color: black;
	background: #3c53d6;
	display: inline-block;
	width: 100%;
	text-align: center;
}
header h1{
	color: yellow;
	text-decoration: none;
	font-weight: 200;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;

	margin-bottom: 0;
}
header h3{
	max-width: 1200px;
	line-height: 2;
	margin: 0 auto;
	color: white;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;
}
header h3 strong{
	color: #000000;
}
canvas.gamescreen{
	background: #CCCCCC;
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
button.github {
    margin: 10px;
    color: white;
    background: yellow;
    color: black;
    text-transform: uppercase;
    padding: 5px 10px;
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
}
button:focus {outline:0;}
button.github:hover{
	background: #E6E80B;
	color: white;
	transition: 500ms;
	cursor: url(assets/web/pointer.svg), auto;
}
button.github span{
	font-size: 1.6em;
	font-family: inherit;
}