:root {
	--ribbon: #1D749B;
	--cat: #0F27F6;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Lato";
	font-weight: 500;
	font-style: normal;
}

h1, h2 {
	font-weight: 500;

}

#header_background {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
	background-image: url("/resources/seal.png");
}

#nav {
	display: flex;
	/* background-color: #A6A6A6; */
}

#nav li {
	padding: 5px;
	list-style: none;
	font-size: 24pt;
	background-color: gray;
}

#nav li:hover {
	background-color: var(--ribbon);
	filter: brightness(110%);
}

#nav .current_page {
	background-color: var(--ribbon);
}


#nav li a {
	color: white;
	text-decoration: none;
	padding: 0 5px;
}

#header_title {
	height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#header_title h1 {
	font-size: 48pt;
	text-align: center;
	color: white;
}

#header_title h2 {
	font-size: 30pt;
	text-align: center;
	color: white;
}

#about_us, #additional_info {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 20px;
}

#about_us * {
	width: 65%;
	margin: 10px;
}

#about_us h3 {
	color: rgba(34,110,147,1);
	text-align: center;
	font-weight: 500;
	font-size: 19pt; 
	line-height: 1.4;
}

#additional_info * {
	width: 90%;
	margin: 2px;
}

#company_info {
	text-align: center;
	background-color: var(--ribbon);
}

#company_info * {
	color: white;
	padding: 2px;
}

#staff_list {
	display: grid;
	grid-auto-columns: 50%;
	grid-template-areas: "a a";
	width: 80%;
}

.staff_card {
	margin: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.staff_card * {
	width: 80%;
	margin: 5px;
}

.staff_card .staff_role {
	text-align: center;
}

.staff_card h3 {
	color: rgba(34,110,147,1);
	text-align: center;
	font-weight: 500;
	font-size: 19pt; 
	line-height: 1.4;
}

.staff_card div {
	height: 50px;
}
