body {
	background-color: #ededed;
	background-attachment: fixed;
	margin: 0;
}

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

#logolink {
	grid-area: 1/1/2/9;
}

#logo {
	background-image: url(images/logo.png);
	height: 250px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#navbackground {
	background-image: linear-gradient(to right, #9c9bad, #b6c0cc);
	grid-area: 2/1/3/9;
}

nav {
	grid-area: 2/2/3/8;
	height: 60px;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: linear-gradient(to right, #9c9bad, #b6c0cc);
	position: sticky;
}

nav a {
	text-decoration: none;
	color: #ffffff;
	font-family: Verdana, sans-serif;
}

main {
	grid-column: 2/8;
	grid-row: 3/4;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

.mySlides {
	height: 600px;
	width: auto;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.display-left {
	height: auto;
	width: 100px;
}

.display-right {
	height: auto;
	width: 100px;
}

button {
	position: relative;
	padding: 15px 32px;
	font-size: 16px;
	background-color: #fff;
	border: none;
	display: inline-block;
}

#shopBtn {
	margin: 20px 0;
	background-color: #e27864;
	color: white;
	cursor: pointer;
	outline: none;
}

#footerbackground {
	background-image: linear-gradient(to right, #9c9bad, #b6c0cc);
	grid-area: 4/1/5/9;
}

footer {
	grid-area: 4/2/5/8;
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
}

section {
	padding: 10px;
	flex: 1;
}

section ul {
	padding: 0;
	list-style: none;
}
@media only screen and (max-width: 800px) {
	#shopBtn {
		padding: 20px 185px;
    	font-size: 25px;
	}

}

@media only screen and (max-width: 600px) {
	.mySlides {
		max-width: 100%;
		height: auto;
	}

	#shopBtn {
		padding: 14px 125px;
    	font-size: 27px;
	}
}
