*{
	margin: 0px;
	padding: 0px;
}

html,body{
	width: 100%;
	height: 100%;
}

@font-face{
	font-family: Comfortaa;
	src: url('../font/Comfortaa-Regular.ttf') format('truetype');
}

body{
	background-color: black;
	position: relative;
}

#game-table{
	display: table;
	width: 100%;
	height: 100%;
	position: absolute;
}

#game-cell{
	display: table-cell;
	vertical-align: middle;
}

#viewport{
	margin: auto;
	width: 640px;
	height: 960px;
}

canvas{
	width: 100%;
	height: 100%;
	image-rendering: optimize-speed;
}

#version{
	color: white;
	text-align: right;
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-family: Arial;
	font-size: 0.8em;
	display: none;
}

/* Ads */
#ad-overlay{
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 999;
	display: none;
}

#ad-table{
	display: table;
	width: 100%;
	height: 100%;
}

#ad-cell{
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

#ad-container{
	/*background-color: white;*/
	margin: auto;
	position: relative;
	
	background-image: url("../img/more-ad.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	width: 100%;
	height: 100%;
}

#ad-container iframe{
	border: none;
}

#ad-close-button{
	background-image: url("../img/close.png");
	background-repeat: no-repeat;
	background-position: center center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -20px;
	right: -20px;
	cursor: pointer;
}