

html	{
	background: black;
	}

body	{
	background: white;
	margin: auto;
	padding: 10px;
	width: 980px;
	}



	/* Flex Rules */  

.page-layout-container {
	max-width: 980px;
	padding: auto;
	display: flex;
	align-items: flex-start;
	}
 
.main-column {
	text-align: center;
	padding: 20px;
	flex: 2;
    	}

.sidebar-one {
	text-align: center;
	padding: 20px;
	flex: 1;
    	}


	/* Flex Rules for bottom of pages */ 

.call-outs-container {
	max-width: 980px;
     	padding: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	}

.call-out {
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	flex-basis: 25%;
	}	  
	
	.call-out:nth-child(1)
	.call-out:nth-child(2)
	.call-out:nth-child(3)
	.call-out:nth-child(4)


	/* Flex Rules for photos */  

.photopage-container {
	max-width: 980px;
	margin: auto;
     	padding: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	}



.photo {
	padding: 5px;
	box-sizing: border-box;
	margin-bottom: 5px;
	flex-basis: 50%;
	}	  
	
	.photo:nth-child(1)
	.photo:nth-child(2)
	



 
    /* Too narrow to support three columns */

@media (min-width: 900px) {
	.call-outs-container {
	display: flex;
	justify-content: space-between;
	}
	.photopage-container {
	display: flex;
	justify-content: space-between;
	}
}

/* text styles web page */ 


span {
    height: 50px;            
    display: table-cell;
    vertical-align: middle;
}

figure {
    	display: table;
	margin: auto;
	padding: 25px 0px 10px 0px;
}


figure.left {
	display: table;
	float:left;
	margin: 0px 20px 20px 0px;
}

figure.right {
	display: table;
	float:right;
	margin: 0px 0px 20px 20px;
}
   
figcaption {
	color: black;
	display: table-caption;
	font-family: 'Arial Narrow',sans-serif;
	font-size: 12px;
	line-height: 16px;
	caption-side: bottom;
	text-align: justify;
}

img {
	border: 2px solid;
	vertical-align: middle;
}

h1 {
	font-family: 'Permanent Marker', cursive;
	margin: 10px auto;
	padding: 5px auto;
	align: left;
	color: black;
	font-size: 36px;
	line-height: 53px;
  	font-style: normal;
}

h2 {
	font-family: 'Permanent Marker', cursive;
	margin: 10px auto;
	align: left;
	color: black;
	font-size: 32px;
	line-height: 47px;
	font-style: normal;
}

h3 {
	margin: 10px auto;
	align: left;
	color: black;
	font-family: arial;
	font-size: 18px;
	line-height: 26px;
	font-style: normal;
}

h4 {
	align: left;
	color: black;
	font-family: 'Permanent Marker', cursive;
	font-size: 1.17em;
	line-height: 1.287em;
	font-style: normal;
}

h5 {
	align: left;
	color: black;
	font-family: arial;
	font-size: 12px;
	line-height: 18px;
	font-style: normal;
}

h6 {
	align: left;
	color: black;
	font-family: arial;
	font-size: 9px;
	line-height: 13px;
	font-style: normal;
}

p {
	font-size: 20px;
	font-family: 'Vollkorn', serif;
	font-style: normal;
	font-weight: normal;
	line-height: 24px;
	text-align: justify;
}

hr {
	border: 0;
    	height: 1px;
    	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	}

/* below removes link underlines */ 

a {text-decoration: none}


nav {
	color:black;
	font-size: 1.25em;
  	font-weight: bold;
  	font-family: Arial;
  	line-height: 1em;
  	font-style: normal;
	padding:10px;
  	text-align: center;
  	text-decoration: none;
}

header {
	padding:10px;
  	text-align: center;
}
    


