body {
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content:center;
	margin:0;
	width: 100vw;
	height: 100vh;
	background-color: #f3ebe4;
	font-family: 'Domine', serif;
	font-weight: 400;
}


.container {
	display: flex;
	width: 60%;
	min-width: 510px;
	max-width: 650px;
	background-color: #ffffff;
	border-radius: .5em .5em .5em .5em;
}

.hero-img {
	margin:0;
	width: auto;
	height: 100%;
	max-height: 450px;
	border-radius: .5em 0 0 .5em;
}

.hero-img-mobile {
	display: none;
}

.head-text {
	color: rgba(0, 0, 0, 0.65);
}

.product-info {
	display:flex;
	flex-direction: column;
	justify-content: space-evenly;
	margin:0 auto;
	padding-right: 10px;
	padding-left: 10px;
	width: 40%;
}

.product-name {
	width: 185px;
	font-weight: 700;
}

.product-description {
	color: rgba(0, 0, 0, 0.65);
	line-height: 1.4em;
	margin-bottom:0;
}

.pricing {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 75px;
}

.discount-price {
	margin-right: 20px;
	font-weight: 700;
	font-size: 2em;
	color:rgb(60,130,104);
}

.original-price {
	color: rgba(0, 0, 0, 0.65);
	text-decoration: line-through;
}

button {
	background-color:rgb(60,130,104);
	border: none;
	border-radius: .5rem;
	padding: 15px;
	margin-bottom: 20px;
	color:white;
	font-weight: 700;
	transition: background-color 1s;
}

button:hover {
	cursor: pointer;
	background-color: rgba(60,130,104, 0.82);
}

.attribution { 
	font-size: 11px; text-align: center; 
	margin-top: 1em;
}

.attribution a { 
	color: hsl(228, 45%, 44%); 
}

@media only screen and (max-width: 550px) {

	body {
		display:flex;
		flex-direction: column;
		align-items: center;
		justify-content:center;
		margin:0; 
		width: 100vw;
		height: 100vh;
		background-color: #f3ebe4;
		font-family: 'Domine', serif;
		font-weight: 400;
	}

	.container {
		display: flex;
		flex-direction: column;
		background-color: yellow;
		width: 90%;
		min-width: 310px;
		border-radius: .5rem;
		background-color: #ffffff;
	}

	.hero-img {
		display: none;
	}

	.hero-img-mobile {
		display: block;
		width: 100%;
		height: auto;
		max-height: 450px;
		border-radius: .5rem .5rem 0 0;
	}

	.product-info {
		display:flex;
		flex-direction: column;
		width: 300px;
		margin:0 auto;
		padding-right: 10px;
		padding-left: 10px;
	}

	.product-name {
		width: auto;
		margin-top: 0;
		margin-bottom: 0;
	}

	.product-description {
		color: rgba(0, 0, 0, 0.65);
		line-height: 1.4em;
		margin-bottom:0;
		width:auto;
	}

	.pricing {
		margin-top:1rem;
	}

	button {
		margin-bottom: 1em;
		margin-top: 1rem;
	}
}