body {
	font-family: 'Inter', sans-serif; background-color: #f5efda;
	color: #545954; margin-top: 16px; font-size: 10pt; max-width: 1280px;
	margin-left: auto; margin-right: auto; padding: 0 32px;
}

h1 {
	margin: 0; padding: 0; font-size: 2rem; font-weight: 700; color: #242924;
}

h2 {
	margin: 0; padding: 0; font-size: 1.4rem; font-weight: 700; color: #343934;
}

p {
	margin: 0; padding: 0;
}

input {
	box-sizing: border; padding: 6px; font-family: 'Inter', sans-serif;
	font-size: 10pt; border-radius: 4px; border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.1); outline: 0;
}

button {
	padding: 4px;
}

.title {
	text-align: center;
}

.productHolder {
	display: flex; gap: 32px; align-items: top; margin-top: 32px;
	flex-wrap: wrap; justify-content: center;
}

.productHolder > a {
	outline: 0; border: 0; display: flex; flex-direction: column;
	max-width: 256px; text-decoration: none;
}

.productHolder > a > img {
	width: 256px; height: 256px; border-radius: 16px; margin-bottom: 8px;
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
	transition: transform 0.4s, box-shadow 0.4s;
}

.productHolder > a:hover > img {
	transform: translateY(-4px);
	box-shadow: 1px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.productHolder > a > div > div:first-of-type {
	font-weight: bold; font-size: 1.2rem; color: #242924;
}

.productHolder > a > div > div:nth-child(2) {
	font-weight: bold; color: #c5449a;
}

.productHolder > a > div > div:last-of-type {
	color: #545954;
}

.split {
	display: flex; gap: 32px; align-items: top; margin-top: 32px;
}

.split > div:first-of-type {
	display: flex; flex-direction: column; gap: 8px;
}

.split > div:first-of-type > img {
	width: 384px; height: 384px; border-radius: 16px; margin-bottom: 8px;
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

.split > div:first-of-type > div {
	font-weight: bold; color: #c5449a; font-size: 1.4rem;
}
