@font-face {
	font-family: Montserrat;
	src: url("https://fonts.google.com/specimen/Montserrat");
}

@font-face {
	font-family: Fraunces;
	src: url("https://fonts.google.com/specimen/Fraunces");
}

body {
	margin: 5%;
	max-width: 375px;
	font-family: Montserrat, sans-serif;
	background-color: hsl(30, 38%, 92%);
	color: hsl(228, 12%, 48%);
	box-sizing: border-box;
}

.container {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	width: 100%;
	height: 90%;
}

.product {
	flex: 0 2 0%;
	min-height: 100%;
}

.content {
	flex: 2 0 auto;
	background-color: hsl(0, 0%, 100%);
	align-self: stretch;
	padding: 20px;
	margin: auto;
}

.product img {
	max-width: 100%;
	border-radius: 10px 0;
	height: 100%;
}

header, p, sup {
	font-weight: 500;
}

header {
	letter-spacing: 5px;
}
p {
	font-size: 14px;
	line-height: 2;
}

h1 {
	color: hsl(212, 21%, 14%);
	margin-top: 5px;
}

h1, .prices {
	font-family: Fraunces, serif;
	font-weight: 700;
}

.link {
	padding: 5px;
	margin: 5px;
	background-color: hsl(158, 36%, 37%);
	border-radius: 10px;
}

.cart {
	text-decoration: none;
	font-weight: 700;
	color: hsl(0, 0%, 100%);
	text-align: center;
	padding: 5px;
	margin: 5px;
}

.prices {
	color: hsl(158, 36%, 37%);
	margin: 5px;
	padding: 5px;
	font-size: 30px;
}

@media (min-width: 800px) {

body {
	max-width: 1440px;
}

.container {
	display: flex;
	margin: auto;
	padding: 10%;
	max-width: 41%;
	height: 54%;
	flex-direction: row;
}

.product {
	flex: 1;
	width: 100%;
}

.content {
	flex: 1;
	width: 100%;
	border-radius: 0 10px 10px 0;
}

.product img {
	border-radius: 10px 0 0 10px;
}

}