/* 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;
}

/***********************
    Content
************************/
.sectiongrid{
	display: grid;
	grid-template-columns: 1fr 2fr;
	width: 90vw;
	margin-left: auto;
	margin-right: auto;
}
.title1{
	font-size: 2rem;
	font-weight: bold;
	color: black;
}
.title2{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: 10px;
	color: black;
}
.content1{
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 0px;
	color: darkslategrey;
}
.grid1{
	display: block;
}
.grid2{
	margin-left: 5rem;
	margin-top: 2rem;
}
.formlabel{
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 2rem;
	color: darkslategrey;
}
.nameinput{
	display: block;
	font-size: 1rem;
	width: 90%;
}
.msginput{
	display: block;
	font-size: 1rem;
	width: 90%;
	height: 8rem;
}
.inputbutton{
	display: block;
	font-weight: bold;
	font-size: 1.5rem;
	margin-top: 2rem;
	border-width: 2px;
	border-color: darkslategrey;
	border-style: solid;
	border-radius: 5px;
	padding: 5px;
	color: darkslategrey;
}
.inputbutton:hover{
	cursor: pointer;
	background-color: greenyellow;
}
/***********************
    Footer
************************/
.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;
	}
	.sectiongrid{
		grid-template-columns: 1fr;
		width: 95vw;
		margin-left: auto;
		margin-right: auto;
	}
	.grid1{
		margin-left: auto;
		margin-right: auto;
	}
	.grid2{
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 480px){
	.homepagelogo{
		max-width: 175px;	
		margin-bottom: 3rem;
	}
	.contentgrid{
		grid-template-columns: 1fr;
	}
}
