h1 {
	font-family: "Roboto",sans-serif,"google";
	font-size: 3em;
	font-weight: normal;
	font-style: normal;
	text-align: center;
	color: #f2c314;
	text-shadow: 0px 0px 2px #a68759;
	margin-bottom: 0.5em;
}
.product_card {
	display: flex; 
	flex-flow: row; 
	justify-content: space-around; 
	align-items: center; 
	margin: 2em 0em 2em 0em;
}
.product_card_inverted {
	display: flex; 
	flex-flow: row; 
	justify-content: space-around; 
	align-items: center; 
	margin: 2em 0em 2em 0em;
}
.product_text_container {
	padding: 0em 2em;
	max-width: 50%;
}
.product_image {
	display: block;
	max-height: 350px;
	margin: auto;
}
#ghirigoro {
	height: 4em; 
	object-fit: scale-down;
}

/* ---------------------------------------- */

@media only screen and (max-width: 768px)	{

}

@media only screen and (max-width: 460px)	{
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.5em;
	}
	#ghirigoro {
		height: 3em; 
		object-fit: scale-down;
	}
	.image {
		margin: 0.5em;
		box-shadow: 0 0 10px 3px #a68759;
		max-width: 100%;
	}
	.product_card {
		display: block; 
		margin: 1em 0em 1em 0em;
	}
	.product_card_inverted {
		flex-flow: column-reverse;
		margin: 1em 0em 1em 0em;
	}
	.product_text_container {
		padding: 0em 0em;
		max-width: 80%;
		margin: auto;
	}
	.product_image {
		max-width: 100%;
		max-height: 300px;
		object-fit: scale-down;
		margin-bottom: 1em;
	}
}