body {
	margin: 0px;
	background-color: #C9D0D8;
	font-family: sans-serif;
	font-size: 16px;
	/*background-image: url(/img/black-and-white-electric-guitar.jpg);*/
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
a {
	color: teal;
}
header {
	height: 100px;
	max-width: 1000px;
	margin: 0 auto;
	background-color: #E5E5E5;
	display: flex;
}
header h1 {
	display: flex;
	align-items: center;
	padding-left: 15px;
}
nav {
	margin-left: auto;
	display: flex;
	align-items: center;
}
nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float: left;
}
nav ul li a {
	display: block;
	padding: 20px;
	text-transform: uppercase;
	text-decoration: none;
	color: #B7B3B2;
	font-weight: bold;
	font-size: 14px;
}
section#main {
	max-width: 1000px;
	margin: 0 auto;
	background-color: #FFFFFF;
	display: grid;
	grid-template-columns: 80% 20%;
}
section#main div {
	padding: 15px;
	min-height: 400px;
}
section#main div:nth-of-type(1) {
	background-color: rgba(230, 224, 160, 0.171);
}
section#main div:nth-of-type(2) ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
section#main div:nth-of-type(2) ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
section#main div:nth-of-type(2) ul li a {
	font-size: 16px;
	line-height: 32px;
	display: block;
}
footer {
	max-width: 1000px;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, 0.171);
	display: grid;
	grid-template-columns: auto auto auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer div {
	flex: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer div span {
	display: inline-block;
	text-align: center;
	background-color: rgba(165, 165, 165, 0.282);
	padding: 7px 15px;
	/*+border-radius: 3px;*/
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 21px;
}
footer div:nth-of-type(1) {
	background-image: url('/img/stratocaster.jpg');
	background-image: url(https://learnwebdesign.online/img/bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
footer div:nth-of-type(2) {
	background-image: url('/img/les-paul.jpg');
	background-image: url(https://learnwebdesign.online/img/bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
footer div:nth-of-type(3) {
	background-image: url(/img/telecaster.jpg);
	background-image: url(https://learnwebdesign.online/img/bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
