* {
	box-sizing: border-box;
	user-select: none;
}
body {
	background-color: #202020;
	color: #f0f0f0;
	font-family: 'Noto Sans', sans-serif;
	margin: 0;
	padding: 0;
}
#top-container {
	width: 100vw;
	overflow: none;
}
#bottom-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 400px;
	overflow-x: scroll;
	overflow-y: clip;
	display: flex;
	align-items: horizontal;
}
#estro-count {
	display: block;
	font-size: 10vh;
	text-align: center;
	padding: 4vh;
}
#estro-image {
	display: block;
	margin: 2vh auto;
	height: 30vh;
	transition: 0.05s;
}
#estro-image:active {
	height: 30.5vh;
	margin-top: 1.75vh;
}
.building-container {
	width: 300px;
	min-width: 300px;
	height: 100%;
	border: 1px solid #323232;
	margin: 0;
	padding: 2vh 10px;
	text-align: center;
}
.building-image {
	margin: 1vh;
	height: 80px;
}
.building-name {
	font-size: 24px;
	margin: 1vh 0;
}
.building-info-container {
	width: 100%;
	height: 120px;
}
.building-info {
	font-size: 20px;
}
.building-buy {
	width: 75%;
	background-color: #303030;
	border-radius: 4px;
	padding: 10px;
	margin: 30px auto;
	transition: 0.1s;
}
.building-buy:hover {
	background-color: #2d2d2d;
}
.building-buy-text {
	font-size: 24px;
}
.lvl-token {
	display: inline-block;
	font-variant-numeric: proportional-nums;
	width: 35px;
	height: 35px;
	margin: 8px;
	border-radius: 5px;
	text-align: center;
}
#achievement-popup {
	position: fixed;
	z-index: 1;
	left: 20px;
	width: 600px;
	padding: 20px;
	border-radius: 10px;
	background-color: #303030;
	transition: 1s;
}
#achievement-title {
	font-size: 28px;
	margin-bottom: 8px;
}
#achievement-desc {
	font-size: 20px;
}
#stats-window {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50vw;
	height: 50vh;
	min-height: 400px;
	background-color: #2a2a2a;
	padding: 20px;
	border-radius: 8px;
}
#stats-button {
	position: absolute;
	bottom: 412px;
	left: 12px;
	width: 60px;
	transition: 0.1s;
}
#stats-button:hover {
	filter: brightness(0.875);
}
#stats-title {
	font-size: 32px;
	margin-bottom: 20px;
}
#stats-text {
	font-size: 24px;
}
#close-button {
	display: inline-block;
	background-color: #303030;
	border-radius: 4px;
	padding: 10px 20px;
	margin: 30px auto;
	transition: 0.1s;
}
#close-button:hover {
	background-color: #2d2d2d;
}
@media screen and (max-width: 800px){
	#bottom-container {
		height: 320px;
	}
	#estro-count {
		font-size: 10vw;
		padding: 3vh;
	}
	#achievement-popup {
		width: 90%;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.building-container {
		width: 240px;
		min-width: 240px;
		height: 320px;
	}
	.building-name {
		font-size: 18px;
	}
	.building-info-container {
		height: 100px;
	}
	.building-info {
		font-size: 16px;
	}
	.building-buy-text {
		font-size: 20px;
	}
	.lvl-token {
		display: inline-block;
		font-variant-numeric: proportional-nums;
		width: 28px;
		height: 28px;
		border-radius: 4px;
	}
	#stats-window {
		width: 90vw;
	}
	#stats-button {
		position: absolute;
		top: 12px;
		left: 12px;
		width: 40px;
	}
}

