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;
}

nav a:hover { 
	text-decoration: none;
	color: #FAAFDE;
	transition: background-color 0.5s ease;
}

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

main a:hover {
	text-decoration: none;
	color: #FAAFDE;
	transition: background-color 0.5s ease;
	font-family: Verdana, sans-serif;
}

.about {
	height: 400px;
	width: auto;
}

main {
	grid-column: 2/8;
	grid-row: 3/4;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	font-family: Verdana, sans-serif;
}

.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 {
	outline: none;
	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 {
	color: #fff;
	grid-area: 4/2/5/8;
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
}

footer a {
	text-decoration: none;
	color: #fff;
}

footer a:hover { 
	text-decoration: none;
	color: #FAAFDE;
	transition: background-color 0.5s ease;
}

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

	form {

		display: grid;
		grid-template-rows: auto;
		grid-template-columns: 200px 1fr;
		width: 100%;
		grid-gap: 0.75rem;

	}

	input {
		outline: 2px solid #9c9bad;
		font-size: 1rem;
		padding: 10px;
		color: #666666;
		background-color: #fafafa;
		border: none;
	}

	textarea {
		outline: 2px solid #9c9bad;
		font-size: 1rem;
		padding: 10px;
		color: #666666;
		background-color: #fafafa;
		border: none;
	}

	textarea:focus {
		outline: 2px solid #9c9bad;

		background-color: #f0f0f0;
	}

	input:focus {
		outline: 2px solid #9c9bad;
		background-color: #f0f0f0;
	}

	label {
		padding: 10px;
		text-align: right;
	}

	#send {
		margin-bottom: 10px;
		grid-column: 2/3;
		width: 10rem;


	}



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

	form {

		display: grid;
		grid-template-rows: auto;
		grid-template-columns: 175px 0.85fr;
		width: 100%;
		grid-gap: 0.75rem;

	}

}






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

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

.about {
	height: 375px;
	width: auto;
}

	form {

		display: grid;
		grid-template-rows: auto;
		grid-template-columns: 150px 0.75fr;
		width: 100%;
		grid-gap: 0.75rem;

	}

	input {

		outline: 2px solid #9c9bad;
		font-size: 1rem;
		padding: 10px;
		color: #666666;
		background-color: #fafafa;
		border: none;
	}

	textarea {
		outline: 2px solid #9c9bad;
		font-size: 1rem;
		padding: 10px;
		color: #666666;
		background-color: #fafafa;
		border: none;
	}

	.mySlides {
		max-width: 100%;
		height: auto;
	}

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