
html {
	font-size: 1vw;
}
body {
	margin: 0;
	font-size: 1.5rem;
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
	background-color: #797472
}
#heroimage {
	width: 100%;
	height: auto;
	position: relative;
}
#overview {
	width: 94%;
	height: auto;
	padding: 3%;
}
.herotext {
	width: 50%;
	position: absolute;
	top: 10%;
	left: 5%;
}
.herotext2 {
	width: 25%;
	position: absolute;
	top: 80%;
	left: 75%;
}
.alignright {
	text-align: right;
}
h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3rem;
}
h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
}
h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.9rem;
}
img {
	max-width: 100%;
	height: auto;
	border: 5px solid #FFFFFF;
	box-sizing: border-box;
}
#heroimage img {
	width: 100%;
	height: auto;
}
#flexbox {
	display: flex; /* turns on flexbox */
	flex-wrap: wrap; /* turns on text wrap */
	justify-content: space-around; /* auto adds space for left and right */
	padding-top: 2%;
	padding-bottom: 2%;
	align-items: center;
} /* all of this can be found at https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
.cell1 {
	width: 30%;
	height: auto;
	margin-bottom: 1%;
}

.cell2 {
	width: 30%;
	height: auto;
	align-self: flex-start;
	text-align: justify;
}
.invisible {
	visibility:hidden;
}


/* Home page CSS */
#leftcolumn{
	width: 45%;
	height: auto;
	float: left;
	padding: 1%;
	border: 1vw solid #000000;
	border-style: ridge;
}
#rightcolumn{
	width: 45%;
	height: auto;
	float: right;
	padding: 1%;
	margin-bottom: right;
	border: 1vw solid #000000;
	border-style: ridge;
}
#footer{
	width: 96%;
	height: auto;
	background-color: #d4b7a9;
	padding: 2%;
	text-align: center;	
	clear: both;
}
#omission{
	list-style-type: none;
	line-height: 150%;
}
.explicate{
	font-style: italic;
	font-weight: bold;
	color: #000000;
}
/* Navigation bar CSS */

#navbar {
	list-style-type: none; /* removes the bullet points */
	background-color: #AE5E33;
	overflow: hidden; /* needed for floating elements to show colors, images, etc. */
	font-size: 2rem;
	margin: 0;
	padding: 0;
	text-align: center;
}
#navbar li {
	float: left;
	width: calc(100%/5); /*five items in the nav bar to share space*/
}
#navbar li a {
	display: block;
	padding: 4%, 0, 4%, 0;
	border: .15vw solid black;
}
#navbar a:link {
	color: white;
	text-decoration: none;
}
#navbar a:visited {
	color: white;
	text-decoration: none;
}
#navbar a:hover {
	color: #4C8BC2;
}
.active {
	background-color: black;
}