body {
	background-color: black;
	color: white;
	font-size: 20px;
	font-family: Georgia;
}

a:link {
	color: blue;
	text-decoration: none;
}

a:visited {
	color: grey;
	text-decoration: none;
}

#header {
	width: 1500px;
	text-align: center;
	margin: auto;
	font-size: 50px;
}

.container {
	max-width: 1300px;
	margin: auto;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
}

#bodytxt {
	width: 830px;
	min-height: 600px;
	margin: auto;
	padding: 10px;
	text-align: center;
	border-style: double;
	border-color: red;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

.txtbx {
	width: 560px;
	min-height: 200px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 15px;
	text-align: center;
	background-color: #E0E0E0;
	color: black;
	border-color: #CF391B;
	border-style: solid
}

.stat {
	font-family: 'Courier New', monospace;
}

#navbar {
  height: 75px;
  list-style-type: none;
  margin: 20px;
}

#navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar li a {
  color: white;
  background-color: #CF391B;
  display: block;
  padding: 8px 16px;
  margin: 15px 5px;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  outline-style: outset;
  outline-width: 3px;
  outline-color: #591600;
  text-align: center;
}

#navbar li a:hover {
  background-color: black;
  border-style: inset;
}