html, body, body * {
	margin: 0;
	padding: 0;
}

body {
	background-color: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

#terminal {
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	width: 75vw;
	height: 75vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#terminal-titlebar {
	display: flex;
	justify-content: center;
	align-items: center;
	
	width: 100.9%;
	height: 24px;
	
	font-family: Open Sans, Segoe UI, Calibri, sans-serif;
	font-size: 11px;
	background-color: #474747;
	
	border-radius: 3px 3px 0px 0px;
  }

#terminal-body {
	padding: 5px;
	width: 100%;
	height: calc(100% - 24px);
	max-height: calc(100% - 24px);
	font-family: Inconsolata, monospace;
	font-size: 14px;
	color: #dddddd;
	background-color: #111111;
	border-radius: 0px 0px 3px 3px;
	overflow-y: scroll;
}

#commandline {
	display: flex;
	flex-direction: row;
	color: inherit;
}

.posted {
	color: inherit;
}

.prompt {
	display: inline-block;
	flex-grow: 1;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: inherit;
}
