	
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
#wrapper{
	display:grid;
	grid-auto-rows: minmax(0px, auto);
	grid-template-columns:minmax(0px,1fr) repeat(6, minmax(0px,175px)) minmax(0px,1fr);

}
header{
	background-color: #9E91B3;
	font-family:Homemade Apple Pro;
	color:#ECE8E6;
	grid-row: 1/2;
	grid-column: 2/8;
}
header h1{
	line-height: 240%;
	background-image: url(images/booklogo2.jpg);
	background-repeat:no-repeat;
	background-size: 100px 90px;
	background-position:right;
	padding-left: 0.5em;
	height:72px;
	margin: 0;
}
nav {
	font-weight: bold;
	position: sticky;
	top:0;
	background-color: #ACBC66;
	grid-row: 2/3;
	grid-column: 2/8;
	}
nav a{
	text-decoration: none;
	font-family:American Typewriter;
	color:#563F34;
	padding:.4rem 0rem;
	display:block;
	text-align: center;
}
nav a:hover {
	background-color:#ECE8E6;
	transition: 0.3s ease-out;

}
nav ul{
	list-style-type: none;
	margin:0px;
	padding:0px;
	display:flex;
	flex-flow: row nowrap;
}
nav ul li{
	width:100%;
}
body{
	background-color: #EDE8E7;
	background-attachment: fixed;
	margin:0px;
}
#bookshero{
	height: 400px;
	background-image: url(images/bookshero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	grid-row: 3/4;
	grid-column: 1/9;
	position: relative;
}
#bookshero p{
	background-color:rgba(172, 188, 102, 0.5);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	font-family: American Typewriter;
	font-size: 30pt;
	color:#FFFFFF;
	font-weight: normal;
	padding:1em;
	text-align: center;
	position:absolute;
	bottom:-30px;
}

#coffee{
	height: 350px;
	background-image: url(images/coffee.jpeg);
	background-repeat: no-repeat;
	background-size: contain;
	position:relative;
	display:flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: nowrap;
	align-content: flex-end;
	margin-right:4rem;
	margin-left:4rem;
	margin-bottom: 4rem;
	margin-top: 4rem;
	align-items: center;
}
#coffee p{
	font-family:American Typewriter;
	color:#563F34;
	width: 50%;
	font-size:18pt;
}
footer {
	font-size: .70em;
	text-align:center;
	padding:0.5em;
	height: auto;
	grid-row: 5/6;
	grid-column: 2/8;
	background-color: #9E91B3;
	font-family: American Typewriter;
	color:#EDE8E7;
	background-image:url(images/booklogo2.jpg);
	background-repeat:no-repeat;
	background-size: 75px 60px;
	background-position: bottom left;
}
.footerImage{
	background-image:url(images/booklogo2.jpg);
	background-repeat:no-repeat;
	background-size: 110px 100px;
	background-position:left;
}
footer h1{
	font-size:16px;
	font-family:Homemade Apple Pro;


}
footer h3{
	text-decoration:none;
	text-align:left;
	font-size:17px;
	font-family:Georgia;
	margin-bottom: 0.5rem;
}
footer ul{
	list-style-type: none;
	margin:0em;
	padding:0em;
	flex-flow: row nowrap;
	font-weight: normal;
	font-family: American Typewriter;
	text-decoration: none;
	padding-bottom: 1rem;
	text-align: left;
}
footer ul li{
	font-size: 14px;
	}
footer ul li a{
	text-decoration: none;
	color: #EDE8E7;
	margin-bottom:0.5rem;
}
footer ul li a:hover {
	color:#ACBC66;
	transition: 0.3s ease-out;
}

footer p{
	font-family:Arial;
	font-size:10px;
	font-style: italic;
	font-weight: lighter;
	padding-top:1rem;
}
footer hr{
	margin-left: 5rem;
	margin-right:5rem;
}
.footerRow{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin:0 auto;
}
.column1{
	display:flex;
	flex-direction: column;
	margin-right:4rem;
}
.column2{
	display:flex;
	flex-direction: column;
	margin-right:4rem;
}
.column3{
	display:flex;
	flex-direction: column;
	margin-right:4rem;
}

main{
	display:block;
	background-color:#EDE8E7;
	grid-row: 4/5;
	grid-column: 2/8;
	height: auto;
}

@media only screen and (max-width: 900px){
	#wrapper {
	display:grid;
	grid-auto-rows: minmax(0px, auto);
	grid-template-columns:minmax(0px,1fr) repeat(6, minmax(0px,150px)) minmax(0px,1fr);
}
#coffee{
	height:275px;
}
#coffee p{
		font-size:14pt;
		max-height: 270px;
}
#bookshero p{
	font-size: 25pt;
}
nav a{
	padding-right: 1rem;
	padding-left: 1rem;
}
}
@media only screen and (max-width: 700px){

#bookshero{
	height: 300px;
	background-image: url(images/bookshero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;	
}
#coffee{
	height:250px;
}
#coffee p{
		font-size:12pt;
}
#bookshero p{
	font-size: 20pt;
}
main{
	height: auto;
}
nav a{
	font-size: 10pt;
}
}
@media only screen and (max-width:600px){
footer h1{
	font-size: 0px;
}
#coffee{
	height:200px;
	margin-left: 1rem;
	margin-right: 1rem;
}
#coffee p{
		font-size:10pt;
}
#bookshero p{
	font-size: 18pt;
}
}
@media only screen and (max-width:500px){
header h1{
	background-image: none;
	text-align: center;
	}
#bookshero{
	height: 250px;
}
#bookshero p{
	font-size: 16pt;
	}
#coffee{
	height: 200px;
	margin-left:1rem;
}
#coffee p{
		font-size:8pt
}
main{
	height: auto;
	}
}
@media only screen and (max-width:400px){
header h1{
	background-image: none;
	text-align: center;
	}
#bookshero{
	height:200px ;
}
#bookshero p{
	font-size: 14pt;
	}
#coffee{
	height: 190px;
	margin-left:1rem;
}
#coffee p{
		font-size:8pt
}


}
#purplebar{
	background-color: #9E91B3;
	grid-row: 1/2;
	grid-column: 1/9;
}
#greenbar{
	background-color: #ACBC66;
	grid-row: 2/3;
	grid-column: 1/9;
	}
