html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #1F1F1F;
}

.container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	width: 64vmin;
	height: 32vmin;
}

.bar {
	width: 2vmin;
	height: 0vmin;
	background-color: #FF8C00;
	transition: all 0.5s ease-in-out;
}