body {
	font-family: "Segoe UI", "Arial", sans-serif;
	margin: 0px;
	overflow: hidden;
}
h1 {
	width: 100%;
	padding: 2vh 0;
	height: 6vh;
	margin: 0px;
	text-align: center;
	color: rgba(0,0,0,0.5);
	font-weight: 200;
}
p {
	width: 100%;
	height: 6vh;
	text-align: center;
	color: rgba(0,0,0,0.8);
}
.wrapper {
	width: 100%;
	margin: auto;
	background-color: rgba(220,220,220,1);
	transition: all 3s linear;
}
.growBars {
	display: flex;
	flex-flow: column;
	justify-content: center;
	height: 70vh;
	padding-bottom: 14vh;
	width: 100%;
	margin: auto;
}
.bar {
	display: flex;
	min-width: 40px;
	margin: 8px auto;
	height: 40px;
	width: 300px;
	border-radius: 40px;
	background-color: green;
	transition: all 3s ease;
}

.r {
	background-color: rgb(98, 182, 111);
}
.g {
	background-color: rgb(0, 170, 125);
}
.b {
	background-color: rgb(148, 182, 98);
}
.footer {
	position: absolute;
	bottom: 0;
	right: 0;
	height: auto;
	width: auto;
	margin: 20px;
	opacity: 0.4;
}