body {
	background-color: #EDE5DD;
	font-family: Courier New;
	color: #000000;
	background-attachment: fixed;
	margin: 0px
}

header {
	color:#E7D7C1;
	background-image: url(images/headback.jpg);
	background-color: #915823;
	background-position: center;
	background-size: cover;
	margin: 0px;
	grid-row: 1/2;
	grid-column: 1/9;
}

h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
}

main {
	grid-row: 2/3;
	grid-column: 2/8;
	display: grid;
	grid-template-rows:  minmax(340px, 400px)  minmax(340px, 490px)  minmax(340px, 400px);
	grid-template-columns: minmax(240px, 260px) minmax(360px, 529px) minmax(240px, 260px);
	margin-top: 50px;
}

nav a {
	color: #E7D7C1;
	padding: 1rem 0rem;
	display: block;
	text-align: center;
}

nav ul {		
	list-style-type: none;
	margin-left: 0;
	margin: 0px;
	padding-bottom: 40px;
	display: flex;
	flex-flow: row nowrap;
}

nav {
	text-decoration: none;
	text-align: center;
	position: sticky;
	top: 0;
	padding: 0 747px;
}

nav ul li {
	width: 100%;
}

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

#pinktoaster {
	background-image: url(images/pinktoaster.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	height: 400px;
	width: auto;
	grid-row: 1/2;
	grid-column: 1/2;
}

#browntoaster {
	background-image: url(images/browntoaster.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	height: 350px;
	width: auto;
	grid-row: 1/2;
	grid-column: 2/3;
	margin: 0 2em;
}

#redtoaster {
	background-image: url(images/redtoaster.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	height: 400px;
	width: auto;
	grid-row: 1/2;
	grid-column: 3/4;
}

#center {
	text-align: center;
	padding-top: 320px;
	grid-row: 1/2;
	grid-column: 2/3;
	margin: 0 2em;
}

#left {
	text-align: left;
	grid-row: 2/3;
	grid-column: 1/2;

}

#doubletoast {
	background-image: url(images/doubletoast.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 480px;
	width: auto;
	grid-row: 2/3;
	grid-column: 2/3;
	margin: 0 2em;
}

#right {
	text-align: right;
	grid-row: 2/3;
	grid-column: 3/4;
}

#fruittoast {
	background-image: url(images/fruittoast.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 10em;
	height: auto;
	width: 400px;
	grid-row: 3/4;
	grid-column: 1/2;
}

#bigchef {
	background-image: url(images/bigchef.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 150px;
	width: auto;
	grid-row: 3/4;
	grid-column: 2/3;
	margin: 3em 2em;
}

#greentoast {
	background-image: url(images/greentoast.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	height: auto;
	width: 400px;
	margin-left: -140px;
	grid-row: 3/4;
	grid-column: 3/4;
}

footer {
	display:grid;
	grid-row: 3/4;
	grid-column: 4/5;
	text-align: center;
	margin-left: 60px;
	margin-bottom:50px
}