html {
	background-color: #84bde8;
	background-image: url(/assets/blue-clouds-short.png); 
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: animatedBackground 120s ease infinite;
	-webkit-animation: animatedBackground 120s ease infinite;
 }

body {
	background: transparent;
}

h1 {
	font-size: 4em;
}
.spacer {
	min-height: 2em;
	height: 2em;
	max-height: 2em;
}


.text-white {
	color: #ffffff;
}
.text-shadow {
	text-shadow: -1px 3px 13px #282222;
}
.product-box {
	height: 11em;
	min-height: 11em;
	max-height: 11em;
	overflow: hidden;
}

@keyframes animatedBackground {
	0% { background-position: 0 0; }
	50% { background-position: 100% 0; }
	100% {background-position: 0 0; }
}

@-webkit-keyframes animatedBackground {
	0% { background-position: 0 0; }
	50% { background-position: 100% 0; }
	100% {background-position: 0 0; }	
	
}