@import url('https://fonts.googleapis.com/css?family=Lato|Roboto');

body {
	background-color: white;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	width: 90%;
	margin: auto;

}

.page-title {
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	color: #3399ff;
	text-align: center;
	text-decoration: underline;
	font-weight: bold;
	padding: 3px;
}

h1, h2, h3 {
	color: #3399ff;
	text-decoration: underline;

}

h2 {
	font-size: 20px;
	text-align: center;
}

h3 {
	font-size: 16px;
	text-align: left;
}

header, article, footer, section {
	text-align: justify;
	border: solid #3399ff;
	background-color: #e6e6ff;
	margin: 10px;
	padding-left: 5px;
	padding-right: 5px;

}

main {
	display: flex;
	justify-content: center;
	margin: auto;
}

strong {
	font-weight: bold;
}

#trending-section {
	flex-basis: 75%;
	padding: 1em;
}

#news {
	flex-basis: 25%;
	padding: 1em;
}

#news ul {
	list-style-type: circle;
}

#trending-items {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

/*
	used to stylize an item in the shop
*/
.item {
	text-align: center;
	font-size: 16px;
	color: #3399ff;
	text-decoration: underline;
	border: dotted #3399ff;
	background-color: white;
	padding: 1em;
	width: 150px;
	height: 150px;
	margin: 5px;
}

/*
	all images under an item always take up the same width, ensures
	proper wrapping
*/
.item > img {
	display: block;
	width: 100px;
	margin: 0 auto;
}

.item h3 {
	text-align: center;
}

#super-sale .item {
	margin: auto;
	margin-bottom: 2em;
	height: auto;
	width: 200px;
	padding: 10px;
}

#super-sale img {
	width: 125px;
}

#super-sale h2 {
	font-size: 25px;
}

header {
	width: 60%;
	margin: auto;
	margin-top: 5px;
}

em {
	font-style: italic;
}

.product-page {
	display: flex;
	background-color: #e6e6ff;
	border: solid #3399ff;
	margin: 5px;

}

.product-info {
	flex-basis: 33%;
	border: dotted #3399ff;
}

.product-section {
	flex-basis: 66%;
	border: dotted #3399ff;

}

/*
	Used to standardize image size in the list of produts
*/
.product-section img {
	margin: auto;
	display: block;
	border: dotted #3399ff;
	background-color: white;
	padding: 1em;

}