/* about.css */
html{
	font-family: Georgia,serif;
}
.homepageheader{
	background-image: url("images/SiteBackground.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-size: cover;
    background-position: center center;
	margin: auto;
	height: 325px;
	box-shadow: 0 3000px rgba(20, 20, 20, 0.5) inset;
}

.headergrid{
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 200px 100px;
}

.homepagelogo{
	max-width: 232px;
	height: auto;
	margin-right: 10px;
	margin-top: 10px;
	margin-left: 10px;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;	
}

.headermenu{
	margin-right: 5%;
	margin-left: auto;
	margin-top: 5%;
	color: white;
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 2;
}

.headertitle{
	font-family: Georgia, serif;
    font-size: 2rem;
	color: white;
	text-align: center;
    margin-top: 0%;
	display: block;
	grid-column-start: 1;
	grid-column-end: 3;
	grid-row-start: 2;
	grid-row-end: 3;
}

.button-custom{
	font-family: Georgia, serif;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	border-color: white;
	border-width: 2px;
	border-style: solid;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-left: 1rem;
	margin-bottom: 1rem;
	color: white;
}

a.button-custom:hover{
	border-color: greenyellow;
	color: greenyellow;
	cursor: pointer;
}
.contentgrid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-left: 5vw;
	margin-right: 5vw;
}
.contentlarge{
	font-weight: bold;
	font-size: 2.5rem;
	text-align: right;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 10px;
	padding-right: 10px;
	color: black;
}
.contentsmall{
	font-weight: bold;
	font-size: 1rem;
	color: darkslategrey;
}
.divcontentsmall{
	padding-left: 10px;
	border-left-color: black;
	border-left-width: 1px;
	border-left-style: solid;
	margin-top: 2rem;
}
.name{
	font-weight: bolder;
	color: black;
}

.storytitle{
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	margin-top: 2rem;
	color: black;
}
.story{
	text-align: center;
	font-size: 20px;
	max-width: 60%;
	margin-left: auto;
	margin-right: auto;
	color: darkslategrey
}

.footer{
	display: block;
	margin-top: 6rem;
}

.footerimage{
	display: block;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
}
.footertext{
	color: darkslategray;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

@media screen and (orientation: landscape){
	.headertitle{
		font-size: 1rem;
	}
}

@media screen and (max-width: 860px){
	.headertitle{
		font-size: 1rem;
	}
}
@media screen and (max-width: 480px){
	.homepagelogo{
		max-width: 175px;	
		margin-bottom: 3rem;
	}
	.contentgrid{
		grid-template-columns: 1fr;
	}
}
