:root {
	font-family: "Varela Round";
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	margin: 0;
	background-color: #000000;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

div.logo,
div.reveal {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #000;
}

div.logo,
div.reveal:after {
	content: "";
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100% - 140px);
	background-image: url(logo.png);
	background-size: 60vh;
	background-position: center 70px;
	background-repeat: no-repeat;
	opacity: 0.2;
}

div.logo {
	height: calc(100% - 140px);
	opacity: 0.2;
}

div.reveal,
div.reveal:after {
	-webkit-transition: height 3s ease;
	-o-transition: height 3s ease;
	transition: height 3s ease;
	height: 0;
}

body.hidden div.reveal,
body.hidden div.reveal:after {
	height: calc(100% - 140px);
}

body.loading {
	opacity: 0;
}

h1,
p {
	margin: 0;
	color: #fff;
	padding: 10px;
	position: relative;
}

p {
	font-weight: bold;
	font-size: 1.3em;
}

p.error {
	color: Red;
}

div#app {
	width: 100%;
	height: 100%;
	text-align: center;
}

div.graph {
	height: calc(100% - 70px);
	vertical-align: bottom;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

div.graph > div {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	vertical-align: bottom;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 8%;
}

div.graph > div > div {
	background-color: rgb(0, 52, 138);
	-webkit-transition: background-color 2s;
	-o-transition: background-color 2s;
	transition: background-color 2s;
	-webkit-transition-delay: 1.5s;
	-o-transition-delay: 1.5s;
	transition-delay: 1.5s;
}

div.graph > div.max > div {
	background-color: #80ab7d;
}

div.graph > div.min > div {
	background-color: #bf5c4a;
}

body.hidden div.graph > div > div {
	background-color: rgb(0, 52, 138);
}
