/* Body */
body {
	font-size: 16px;
}

#bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(#000, #070)
}

* {
	font-family: Lexend;
	color: #bfb;

	margin: 0;
	padding: 0;
	text-align: center
}

#number {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 96px;
	color: white;
}

.effect {
	font-weight: bold;
	font-size: 24px
}

/* Tables */
.upgrades {
	display: flex;
    justify-content: center;
}
.upgrades * {
	margin: 3px
}

/* Buttons */
button {
	background: linear-gradient(#070, #000);
	border: 1px solid #0b0;
	border-radius: 6px;

	color: #fff;
	transition-duration: 0.2s;
	padding: 3px;

	cursor: pointer
}
button * {
	pointer-events: none;
}
button:hover {
	transform: scale(1.1)
}

.wideButton {
	width: 160px;
	height: 36px
}
.bigButton {
	min-height: 48px;
	width: 160px
}

/* Tabs */
#tabs > button {
	position: relative;
	background: linear-gradient(#0b0, #030);
	font-weight: bold;
	font-size: 16px
}

#tabs > button > img {
	position: absolute;
	top: 0;
	left: 3px;
	height: 30px
}

/* Bottom */
#bottom {
	position: fixed;
	width: 100%;
	bottom: 0
}

#numberSmall {
	font-size: 20px;
	font-weight: bold;
	color: white
}