@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	margin: 0;
	font-size: 16px;
}

.logo {
	/*width: 80px;
	height: 80px;
	float: left;
	border-radius: 50%;
	border: 10px solid white;*/
	padding: 20px;
	height: 100%;
	transition: all .4s;
	opacity: .5;
}

.logo:hover {
	padding: 15px;
	opacity: 1.0;
}

nav {
	width: 410px;
	height: 50px;
	float: right;
}


nav a:link {
	
	transition: all .5s;
}

nav a:visited {
	font-size: 20px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	color: white;
	margin: 10px;
	padding: 10px;
	display: inline-block;
	background-color:rgba(87,159,187,1.00);
}

nav a:hover {
	/*background-color:rgba(108,116,214,1.00);*/
	padding-bottom: 10px;
	border-bottom: 4px solid white;

}

nav a:active {
	background-color:rgba(67,26,112,1.00);
}

p {
	line-height: 160%;
}

.biggertype {
	font-size: 1.55em;
	letter-spacing: 2px;
}

.intropara {
	font-size: 1.5em;
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

header {
	width: 100%;
	height: 100px;
	background-color: rgba(51,236,132,1.00);
}

.container {
	width: 80%;
	min-width: 900px;
	height: auto;
	border: 1px solid black;
	margin: 0 auto;
}
article {
	width: 75%;
	height: auto;
	float: left;
	background-color:white;
	padding: 40px;
	border: 0px solid gray;
}
aside {
	width: 25%;
	height: 960px;
	float: right;
	background-color:rgba(226,226,226,1.00);
	box-sizing: border-box;
}

footer {
	width: 100%;
	background-color: rgba(97,80,81,1.00);
	height: 100px;
	clear: both;
}

.productbox {
	width: 250px;
	height: 250px;
	border: 1px dotted gray;
	padding: 15px;
	margin: 0;
	transition: all .4s;
}
.productname {
	text-align: center;
	font-size: 1.3em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	padding: 0;
	margin-top: 0;
	transition: all .4s;
}
.productbox:hover > .productname {
	font-size: 1.4em;
}
.productbox:hover {
	border-top: 3px solid gold;
}

h1 {
	font-family: 'Big Shoulders Stencil Text', cursive;
	font-size: 72px;
	margin-top: .2em;
	margin-bottom: 0px;
}
img.floatright {
	float: right;
	padding: 0 0 10px 10px
}
img.spaced {
	padding-left: 10px;
}
img.flex {
	width: 100%;
 	box-sizing:border-box;
	border-top: 6px white solid;
	filter: saturate(0%);
	transition: all .5s;
}

img.flex:hover {
	border-top: 6px gold solid;
	filter: saturate(100%);
	transform: scale(1.05);
	padding-top:10px;
}
