html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: #000000;
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.cont {
	justify-content: space-between;
	width: 100%;
	height: 100%;
	position: relative;
}

.logo {
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}

.copy {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 12px;
	color: #555555;
	margin-bottom: 15px;
	box-sizing: border-box;
}

.flex_row {
	display: flex;
	flex-direction: row;
}

.flex_column {
	display: flex;
	flex-direction: column;
}

.center {
	justify-content: center;
}

.a_center {
	align-items: center;
}

h1 {
	color: white;
}

button {
	min-width: 150px;
	min-height: 36px;
	text-align: center;
	font-size: 18px;
	margin-right: 10px;
}

input {
	min-width: 300px;
	min-height: 30px;
	font-size: 18px;
}

span {
	font-size: 20px;
	color: white;
}

.control_row {
	margin: 5px 0 5px 0;
}

#data_display {
	margin-top: 5px;
	max-width: 800px;
	min-height: 400px;
	border-radius: 5px;
	border: 2px solid #555555;
}