@charset "UTF-8";
/* CSS Document */
* {box-sizing:border-box;}
img, object {max-width: 100%;}
body {
	background-color: black;
}
h1 {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: white;
	margin: 20px;
}
h2 {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: white;
	margin: 20px;
}
h3 {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 450;
	font-style: normal;
	color: white;
	margin: 20px;
	margin-top: 36px;
}
p {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: white;
	margin-left: 32px;
	margin-top: 8px;
	margin-bottom: 8px;
}
a {
	font-family: "IBM Plex Sans", sans-serif;
	text-decoration: none;
	color: white;
	font-weight:700;
}
li {
	font-family: "IBM Plex Sans", sans-serif;
	text-decoration: none;
	color: white;
	margin-left: 36px;
	margin-top: 16px;
	margin-bottom: 16px;
}
img {
	margin-left:32px;
	border-style: inset;
	border-color: blue;
}

label {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: white;
	margin-left: 32px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.topbar {
	background-color: navy;
	overflow: hidden;
	margin-top: 0;
}

.topbar a {
	float: left;
	text-align: center;
	padding: 12px 24px;
	font-size: 24px;
	border-style: solid;
	border-color: navy;
	background-color: darkblue;
}

.topbar h1 {
	float: left;
	text-align: center;
	font-size: 16px;
	background-color: darkblue;
}

.topbar a:hover {
	background-color: blue;
}

.thebox {
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	width: 90%;
	max-width: 1200px;
	padding: 2em;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 0.125rem;	
}
footer {
	background-color: navy;
	overflow: hidden;
}

hr {
	margin-bottom: 30px;
	height: 8px;
	margin-top: 90px;
	color: blue;
	background-color: blue;
}