* {
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #F7DBA7;
	color: white;
	box-sizing: border-box;
	font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	width: 100%;
}
img {
    vertical-align: middle;
}
.cartButton {
	cursor: pointer;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	background-color: #a87150;
	border: none;
	color: white;
	font-size: 24px;
}
.navbarLogo{
	max-width: 150px;
	max-height: 150px;
}
#logo{
	width: 100%;
	/* 50FFB1 */
}
.everything{
	max-width: 800px;
	margin: 0 auto;
}
.content{
	margin-top: 10px;
}
.themedContainer {
	padding: 8px;
	background-color: #d79268;
	margin-bottom: 10px;
	width: 100%;
}
.themedContainerHeader{
	background-color: #a87150;
	padding: 8px;
}
.themedContainerHeader h2{
	text-align: center;
	margin: 0;
}
.item{
	width: calc(50% - 5px);
	float: left;
	margin-bottom: 10px;
	background-color: #d79268;
	padding: 8px;
	height: 450px;
	overflow: auto;
}
.item:nth-child(even){
	margin-left: 10px;
}
.item img{
	width: 100%;
}
.item .price{
	text-align: center;
}
.item .itemName{
	font-size: 1.5em;
	text-align: center;
}
.navbar{
	height: 38.52px;
	overflow: visible;
	box-sizing: border-box;
}
.navbarLinks{
	float: left;
	background-color: #d79268;
	padding: 7px 10px;
	box-sizing: border-box;
	margin-left: 10px;
	position: relative;
	top: 0;
	transition: 0.25s;
	border-radius: 0px
}
.navbarLinks:hover{
	border-radius: 0 16px 16px 16px;
	/*top: -2px;*/
}
.navbar a{
	text-decoration: none;
	color: white;
	font-size: 20px;
	position: relative;
}
.navbarLinks:nth-child(1){
	margin: 0
}



/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  /*height: 250px;*/
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides img{
	max-width: 100%;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  transform: translate(0,-50%);
  line-height: 353px;
  padding: 0 17px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.15s ease;
}
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #a87150;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 20px;
  margin: 0 1px;
  background-color: #a87150;
  border-radius: 1px;
  display: inline-block;
}

.active, .dot:hover {
  background-color: #ddd;
}