/*
 * index.css
 * CSS style for homepage
 *
 */


/*   * {
	 border: 1px solid;
  } */
  
body {
	 background-color: #efebe9;
	 color: #6d4c41;
	 font-size: large;
	 font-family: Arial, Helvetica, sans-serif;
	 margin: 0 0 75px 0;
	 padding: 0 0 0 0;
}

a {
	 text-decoration: none;
 } 
	
a:link, a:visited {
	 color: #6d4c41;
 }
 
a:hover  {
	 text-decoration: underline;
 }
 
a:active {
	 /*background-color: #6d4c41; */
	 color: red;
 }

picture, svg, header {
	 margin: 0 0 0 0;
	 padding: 0 0 0 0;
 }

header {
	position:relative;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
} 
	
#page-banner {
	width: 100%;
}

#site-logo {
	width: 200px;
	height: 66px;
}

#header-link {
	position: absolute;
	bottom: 1%;
	right: 20px;
}

#site-logo g {
	stroke: #e68a00;
}

#site-logo:hover g, #site-logo:active g {
	stroke: #e68a00;
}
	
article {
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	width: 90%; 
	text-align: left; 
}	

article p a {
	font-weight: bold;
	color: #ff9900;
}

article p a:link, article p a:visited {
/*	color: #ff9900; */
	color: #e68a00;
}

h1, h2 {
	font-family: serif;
	color: #995c00;
}

h1 {
	font-size: xx-large;
}

h2 {
	margin-top: 1.5em;
	margin-bottom: 1em;
	font-size: x-large;
}

@media only screen and (max-width: 480px) {

	header picture {
		padding: 0 0 0 0;
		margin: 0 0 0 0
	}
	
	#site-logo {
		width: 150px;
		height: 49px;
	}	
	
	#header-link {
		/* Centering when the width is known
		https://css-tricks.com/forums/topic/horizontal-centering-of-an-absolute-element/ */
		
		left: 50%;
		margin-left: -75px;
	}
		
}
 
@media only screen and (min-width: 481px) {

/*	a:link, a:visited {
		color: blue
	}
*/	

	header {
		margin-top: 0px;
		margin-bottom: 50px;
		text-align: center;
	}

	#site-logo {
		width: 150px;
		height: 49px;
	}
	
}	


@media only screen and (min-width: 880px) {
	
/*	a:link, a:visited {
		color: red;
	}
*/	
	#site-logo {
		width: 200px;
		height: 66px;
	}

	article {
		width: 750px;
	}
	
}

