*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: sans-serif;
	min-height: 100%;
	color: #555;
}
nav{
	display: grid;
	grid-template-columns: auto 1 fr;
	align-items: center;
	grid-column-gap: 10px;
	grid-template-rows: 15px;
	box-shadow: 0 5px 5px rgba(0,0,0,0,15);
	position: sticky;
	top: 0;
	background-color: white;
	padding-left: 10px;
	padding-right: 10px;
}
nav	.brand{
	font-size: 28px;
	font-weight: bold;
	color: #245990;
}
nav	a{
	text-decoration: none;
	display: inline-block;
	padding: 5px 5px;
	transition: background-color 0.3s, color 0.3s;
	color: #245990;
	font-size: 18px;
}
nav	a:hover,
nav	a.active{
	background: #4d9176;
	color: #fff;
	border-radius: 3px;
}
/*HEADER RULES*/
header{
	padding: 5px 5px;
	background-color: #f4f4f4;
}
header	h1{}
header .sub-title{
	margin-top: 5px;
	line-height: 28px;
}
/*MAIN SECTION*/
main{
	padding: 5px;
	display: grid;
	grid-template-columns: auto 1 fr;
	grid-column-gap: 5px;
	margin-top: 5px;
	margin-bottom: 25px;
}
main .section.title{
	font-size: 22px;
	margin-bottom:5px;
}
main .left{
	border-right: thin solid #d4d4d4;
	padding-right: 20px;
}
main .left a{
	display: block;
	text-decoration: none;
	color: #555;
	font-size: 18px;
	margin-bottom: 10px;
}
main .left a:hover{
	text-decoration: underline;
}
main .right{}
main .right .product{
	display: grid;
	grid-template-columns: auto 1 fr;
	grid-column-gap: 50px;
	grid-row-gap: 50px;
}
main .right .product-left img{
	height: 150px;
	display: block;
	margin: 0 auto;
}
main .right .title a{
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
	color: #555;
	line-height: 26px;
}
main .right .title a:hover{
	text-decoration: underline;
}
main .right .description{
	margin-top: 10px;
}
main .right .price{
	font-size: 24px;
	margin-top: 30px;
	color: darkred;
}
/*FOOTER RULES*/
footer{
	background-color: green;
	padding: 0px;
	width: 100%;
	height: 25px;
	color: white;
}

