body {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 100vh;
	width: 100%;
	position: relative;
	margin: 0;
}

h1 {
	margin: 0;
}

#shop {
	display: inline-block;
	position: fixed;
	z-index: 100;
	bottom: 0px;
	right: 0px;
	padding-bottom: 10px;
	padding-right: 10px;
}

#stats {
	display: inline-block;
	position: fixed;
	z-index: 99;
	bottom: 0px;
	left: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.milestoneStar {
	position: fixed;
	z-index: 15;
	color: #0000FF;
}

table,
tr,
td,
th {
	border: 1px solid black;
	border-collapse: collapse;
}

td,
th {
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.name {
	text-align: left;
}

.cost {
	text-align: right;
}

.title {
	font-size: 30px;
	font-weight: bold;
}

#pointsHeader {
	display: inline-block;
	z-index: 3;
	position: relative;
}

#gameOver {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	left: 0px;
	top: 0px;
}

#gameOver>div {
	margin-top: 20vh;
}

#homeLogo>img {
	-webkit-animation: spin 5s infinite linear;
	        animation: spin 5s infinite linear;
}

@-webkit-keyframes spin {

	0%,
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}

	20%,
	80% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes spin {

	0%,
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}

	20%,
	80% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@-webkit-keyframes text-emphasis {
	50% {
		color: #0000FF;
	}
}

@keyframes text-emphasis {
	50% {
		color: #0000FF;
	}
}

#milestoneAchieved {
	-webkit-animation: text-emphasis 1s infinite ease-in-out;
	        animation: text-emphasis 1s infinite ease-in-out;
	color: #00FF00;
	z-index: 10000;
	position: relative;
	text-shadow: 1px 1px 3px #000;
}

#shopExpanded {
	-webkit-animation: text-emphasis 2.5s infinite ease-in-out;
	        animation: text-emphasis 2.5s infinite ease-in-out;
	color: #FF9900;
	z-index: 10000;
	position: relative;
	text-shadow: 1px 1px 3px #000;
}

@media screen and (max-height: 420px) {
	#gameOver>div {
		margin-top: 0;
	}
}

canvas {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
}

.center,
.center * {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}