@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.content-wrapper {
	width: 1050px;
	margin: 0px auto;
	background-color: orangered;
}
.content-wrapper a {
	color: black
}
body {
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 10px 0px;
}
header {
	border-bottom: 1px solid brown;
}
header .content-wrapper {
	display: flex;
	background-color: tan;
}
header nav {
	display: flex;
	flex-grow: 1;
	flex-basis: 0;
	justify-content: end;
	align-items: center;
}
header nav a {
	text-decoration: none;
	padding: 10px 10px;
	margin: 0 auto;
}
content {
	display: flex;
	flex-direction: column;
	background-color: tan;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding-bottom: 10px;
}
content h2 {
	display: inline-block;
	margin: 0;
	width: 1050px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 68px;
	padding-bottom: 10px;
}
content h3 {
	display: inline-block;
	margin: 0;
	width: 1050px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 50px;
	padding-bottom: 10px;
}
content p {
	display: inline-block;
	margin: 0px;
	width: 1050px;
	font-size: 24px;
	padding: 0px 5px;
}
content ul {
	width: 100%;
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
}
content ul li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	word-wrap: break-word;
}
content form {
	padding: 5px;
}
content button {
	margin: 5px;
	padding: 12px 20px;
	border: 0;
	background: brown;
	color: black;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
}
#avatar {
	border-radius: 50%;
	padding: 0px 10px;
}
#ZeroDay, #DEFCON, #Alexa, #LearningStandards, #ITTicket, #Brief, #HomePage, #mp4 {
	max-width: 50%;
	padding: 0px 10px;
}
footer .content-wrapper {
	display: flex;
	background-color: tan;
	border-top: 1px solid brown;
	padding: 0px 5px;
}
.flex-container {
	display: flex;
}