/* Josha Chapman-Dodson's CIS195 CSS for Lab3 */

* {
	font-family: SF-Mono, ui-monospace, monospace;
}

/* Font Families */

/* SF Mono */

@font-face {
	font-family: "SF-Mono";
	src: url("fonts/SF-Mono-Regular.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "SF-Mono";
	src: url("fonts/SF-Mono-Italic.woff2") format("woff2");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: "SF-Mono";
	src: url("fonts/SF-Mono-Bold.woff2") format("woff2");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "SF-Mono";
	src: url("fonts/SF-Mono-BoldItalic.woff2") format("woff2");
	font-weight: bold;
	font-style: italic;
}


/* Containers */

.contentGrid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
	margin: 0;
}


.contentBox {
	border: #1e1e1e solid 0.5px;
	background: #dedede;
	padding: 1rem;
}

.contentBoxDark {
	border: #1e1e1e solid 0.5px;
	background: #cecece;
	padding: 1rem;
}


/* Tag Selectors */

img.left {
	float: left;
	margin: 1rem;
}

img.right {
	float: right;
	margin: 1rem;
}

img.logo {
	height: 60px;
	width: auto;
	float: inline-start;
	margin-right: 0.75rem;
}

body {
	color: #1e1e1e;
	background: #eeeeee;
	font-size: small;
	width: 90%;
	max-width: 800px;
	margin: 2em auto;

}

header {}

h1 {
	padding: 0.5rem;
	color: #1e1e1e;
	font-size: xxx-large;
	font-weight: bold;
	font-style: normal;
}

h2 {
	padding: 0.75rem;
	padding-bottom: 0.5rem;
	color: #1e1e1e;
	font-size: x-large;
}

h3 {
	color: #1e1e1e;
	font-size: large;
	text-align: center;
	font-weight: bold;
	font-style: normal;
}

nav {
	margin: 1rem;
	background: #dedede;
	border: #1e1e1e solid 0.5px;
	padding: 1rem;
	font-size: 18px;
	text-align: center;
}

nav a {
	padding: 10px;
	text-decoration: none;
	color: #1e1e1e;
}

nav a:hover {
	color: #1e1e1e;
	background: #cecece;
	text-decoration: none;
}

nav a:visited {
	color: #1e1e1e;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #1e1e1e;
}

p {
	padding: 5px;
}

p::first-line {
	font-weight: bold;
}

hr {
	border: #1e1e1e solid 0.5px;
	margin: 2rm;
}

main {
	padding: 20px;
}

ul.sitemapList {
	font-size: large;
}

article {}

aside {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: #1e1e1e solid 0.5px;
	background: #dedede;
	color: #1e1e1e;
	padding: 20px;
}

table {}

details {}

summary {}

footer {
	text-align: center;
	border: #1e1e1e solid 0.5px;
	background: #dedede;
	margin: 1rem;
	padding: 1rem;
	line-height: 1rem;
}

footer a {
	text-decoration: none;
	color: #1e1e1e;
}

address {
	color: #1e1e1e;
}