/*
header.css
created on 4/3/19
by Twin Tiers IT, LLC
revised 7/8/19
*/

* {
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

header {
	height: 200px;
	background-color: #3c97bf;
	color: #fff;
	display: grid;
	grid-template-rows: 130px 40px 30px;
}

.heading, .sub_heading {
	font-family: 'Libre Baskerville', serif;
}

.heading {
	font-size: 50px;
}

.sub_heading {
	font-size: 30px;
}

#name {
	grid-row-start: 1;
	grid-row-end: 2;
	text-align: center;
}

#tag_line {
	grid-row-start: 2;
	grid-row-end: 3;
}

nav {
	grid-row-start: 3;
	grid-row-end: 4;
}

#name, #tag_line, nav {
	justify-self: center;
	align-self: center;
}

ul {
	height: 30px;
	width: 100vw;
	text-align: center;
}

li {
	font-size: 18px;
	display: inline;
}

a.link {
	text-decoration: none;
	color: #fff;
	border: 2px solid #3c97bf;
}

a.link:hover {
	text-decoration: underline;
}

a.link:focus {
	border-color: #fff;
}

#a_middle {
	margin-left: 40px;
	margin-right: 40px;
}




/* footer.html styles */

footer {
	background-color: #5a5a5a;
	height: 100px;
	width: 100%;
	text-align: center;
	margin: 1% 0%;
	margin-bottom: 0;
	border: 1px solid #5a5a5a;
}

div#footer_container {
	margin: 0;
	padding-top: 1.5%;
	height: 100px;
}

a#ttit {
	color: #fff;
}

p#copyright {
	color: #fff;
}

@media screen and (min-width: 586px) {

#name {
	padding-left: 10px;
	padding-right: 10px;
}


} /* End of 586px */

@media screen and (min-width: 606px) {

header {
	height: 140px;
	grid-template-rows: 70px 40px 30px;
}

} /* End of 606px */

@media screen and (min-width: 645px) {

header {
	height: 110px;
	grid-template-rows: 70px 40px;
	grid-template-columns: 350px 1fr;
}

#name, #tag-line {
	justify-self: start;
}

#name {
	grid-column-start: 1;
	grid-column-end: 3;
}

#tag_line {
	grid-column-start: 1;
	grid-column-end: 2;
	padding-left: 10px;
}

nav {
	grid-row-start: 2;
	grid-row-end: 3;
	grid-column-start: 2;
	grid-column-end: 3;
	align-self: end;
	width: 100%;
	padding-right: 10px;
}

ul {
	width: 100%;
	text-align: right;
}

li {
	font-size: 21px;
}

#a_middle {
	margin-left: 20px;
	margin-right: 20px;
}

} /* End of 645px */
