* {
	margin: 0;
	padding: 0;
}

#content {
	margin-top: 128px;
}
#presentation-container {
	margin-top: 150px;
	position: relative;
}
#phrase-container {
	position: relative;
	left: 50%;
	padding: 16px;
	width: 50%;
	text-align: center;
	color:rgba(255,255,255,0.95);
	background: url(../imgs/textures/red_wood_texture.jpg) repeat center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	outline: 1px dotted rgba(255,255,255,0.25);
	outline-offset: -6px;
	max-width: 320px;
	opacity: 0.98;
	box-shadow: 0 0 10px 2px black;
}
#phrase-container > p {
	padding-top: 8px;
	font-family: "Raleway", sans-serif;
}

#images-slider {
	position: absolute;
	top:5%;
	width: 100%;
	height: 90%;
	z-index: -1;
	background-color: white;
	white-space: nowrap;
	overflow: hidden;
}
#images-slider > img {
	position: relative;
	height: 100%;
	display: inline-block;
	outline: 1px dotted rgba(255,255,255,0.5);
	outline-offset: -6px;
}

#products-container {
	margin-top: 32px;
	width: 100%;
}

#products-list {
	position: relative;
	text-align: center;
	/*background: url(../imgs/textures/red_wood_sep_texture.jpg) repeat top;*/
}

#products-list > a {
	position: relative;
	margin: 16px;
	height: 220px;
	width: 220px;
	display: inline-block;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.25s ease-in-out;
	background-color: rgba(43,60,67,.25);
	overflow: hidden;
}
#products-list > a:before {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: inherit;
  content: " ";
  border-radius: inherit;
}

#products-list > a > p {
	color:white;
	position: relative;
	font-family: "Courgette", cursive;
	font-size: 32px;
	top: 60%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	opacity: 0;
	transition: all 0.25s ease-in-out;
}

#products-list > a:hover {
	border-radius: 120px;
	background-color: rgba(43,60,67,.85);
	box-shadow: 0 6px 10px 0 rgba(0,0,0,0.15);
	cursor: pointer;
}
#products-list > a:hover > p {
	top:50%;
	opacity: 1;
	outline: 1px dotted rgba(255,255,255,0.25);
	outline-offset: 6px;
}

#products-list > a.selected {
	border-radius: 120px;
	background-color: rgba(43,60,67,.85);
	box-shadow: 0 6px 10px 0 rgba(0,0,0,0.15);
	cursor: pointer;
}
#products-list > a.selected > p {
	top:50%;
	opacity: 1;
	outline: 1px dotted rgba(255,255,255,0.25);
	outline-offset: 6px;
}

.title {
	min-height: 40px;
	background: url(../imgs/textures/woodplank_texture.jpg) repeat-x center;
	text-align: center;
}
.title > h1 {
	padding: 16px;
	color: white;
}

h1 {	
	font-family: "Courgette", cursive;
}

/*RESPONSIVE*/
@media screen and (max-width: 770px) {
	h1 {
		font-size: 24px;
	}
	p {
		font-size: 16px;
	}
}

@media screen and (max-width: 510px) {
	#phrase-container {
			width: 80%;
	}
}