::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: 
}

::-webkit-scrollbar-thumb {
	background: white;
	border-radius: 10px;
	border: 1px solid white
}

::-webkit-scrollbar-thumb:hover {
  background: red;
}

body {
	background: black;
	color: white;
	font-family: "Courier New", Courier, mono;
}

a {
	color: red;
}

a:hover {
  color: blue;
}

.content {
	background-color: black;
	color: white;
	margin: auto;
	overflow: scroll;
	overflow-x: hidden;
	font-size: 14px;
}

.left {
	width: 30%;
	float: left;
}

.right {
	width: 64%;
	float: right;
}

emph {
	margin-left: 5%;
}

hr {
	border: 0;
	border-top: 1px solid crimson;
	padding-bottom: 0px;
