body {
	background-color: #EDEDED;
	background-attachment:fixed;
    margin:0;
}



nav {
	padding-right: 100px;
	padding-left: 100px;
	grid-area: 3/1/5/9;
	height: 60px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	background-image: linear-gradient(to right,#9C9BAD, #B6C0CC);
	position: sticky;
}

a {
	text-decoration: none;
	color: #ffffff;
	font-family:Aileron, sans-serif;

}

ul li {
	list-style-type: none;
}

div {

}

button {
	font-family:Aileron, sans-serif;
	position: relative;
	padding: 15px 32px;
	font-size: 16px;
	background-color:#EDEDED;
	border: none;

}

footer {
	font-family:Aileron, sans-serif;
	color: #fff;
	display: grid;
	grid-template-columns: 33% 33% 33%;
	grid-area:1/1/4/4;
	grid-template-rows: auto;
	background-image: linear-gradient(to right,#9C9BAD, #B6C0CC);
}


#column1 {
	grid-area: 1/1/2/2;
}

#column2 {
	grid-area: 1/2/2/3;
}

#column3 {
	grid-area: 1/3/2/4;
}

#logo{
	background-image: url(images/logo.png);
	height: 250px;
	margin-right: 70px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	grid-area: 1/1/4/9;
}

#preview {
	background-image: url(images/preview.jpg);
	height: 600px;
	width: auto;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#wrapper {
	display:grid;
	grid-template-rows: minmax(0,auto);
	grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#shop {
	position: relative;
	right: 40px;
	font-weight: bold;
	font-size: 20px;
	padding: 20px 42px;
	grid-area: 5/1/6/9;
}

.mySlides {
	grid-area: 4/3/5/7;
	background-position: center;
	height: 600px;
	width: auto;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.display-left {
	margin-left: auto;
	margin-top: 61px;
	height: auto;
	width: 100px;
	grid-area: 3/1/5/3;
}

.display-right {
	margin-top: 61px;
	margin-left: 50px;
	height: auto;
	width: 100px;
	grid-area: 3/6/5/8;
}



