html, body {
	margin: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

h1 {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-family: monospace;
	margin-left: 20px;
}

.container {
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 120px);
}

.content-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logs-container {
	width: 352px;
	height: 144px;
	margin-left: 9px;
	overflow: hidden;
	font-size: 9px;
	padding: 5px;
}

.hr {
	width: 362px;
	height: 2px;
	background: #ccc;
	margin: auto;
	margin-top: 15px;
}

.details {
	height: 190px;
	width: 100px;
	font-size: 12px;
}

#gameCanvas {
	margin: 10px;
	width: 350px;
	height: 440px;
	border-radius: 10px;
}

#chart {
	width: 500px;
	height: 250px;
}

.line {
	fill: none;
	stroke: steelblue;
	stroke-width: 2px;
}

.grid line {
	stroke: lightgrey;
	stroke-opacity: 0.7;
	shape-rendering: crispEdges;
}

.grid path {
	stroke-width: 0;
}

.left-container {
	width: 380px;
	height: 190px;
}

.center {
	display: flex;
	justify-content: center;
}

button {
	border: 0;
	border-radius: 3px;
	font-family: sans-serif;
	font-size: 12px;
	height: 42px;
	padding: 0 60px;
	margin: 0 5px;
	color: #fff;
	background: #42cb6f;
    border-bottom: 2px solid #2f8e4e;
	box-shadow: inset 0 -2px #2f8e4e;
	cursor: pointer;
	outline: 0;
}

button:hover {
	background: #38c366; 
}

button:active {
	border: 0;
}