@charset "utf-8";


/*
	CIS 1406
	Final Project
	Jonnie Jucht
	styles page
	Filename: services_styles.css
*/

div.page {
	width: 80%;
	margin: 0 auto;
	color: black;
}
div.content {
	display: flex;
	align-items: center;
	margin-bottom: 5%;
	margin-top: 5%;
}
div.content img {
	width: 45%;
	height: auto;
	border-radius: 10px;
	border: 2px solid black;
}
div.content p {
	flex: 1;
	margin: 0 15%;
	font-size: 18pt;
	font-family: "Markazi Text", serif;
	font-weight: <weight>;
	font-style: normal;
}
div.content:nth-child(even) {
	flex-direction: row-reverse;
}
div.content h2 {
	font-size: 3em;
	text-decoration: underline;
	font-family: "Balthazar", serif;
	font-weight: 400;
	font-style: normal;
}
table {
	width: 50%;
	margin: 20px auto;
	border-collapse: collapse;
	color: black;
	margin-bottom: 5%;
	background-color: rgb(224,213,174);
	box-shadow: 10px 10px 15px rgb(173,144,82),
				-10px 10px 15px rgb(173,144,82);
}
th, td {
	border: 2px solid black;
	padding: 10px;
	text-align: center;
}
caption {
	font-size: 1.5em;
	font-weight: 700;
}
th {
	font-weight: 600;
}