:root {
	--accent: #0efca3;
}

body {
	font-family: "Bricolage Grotesque", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
	line-height: 1.5;
	padding: 1rem; 
	margin: 0; 
	background: #f2f2f2;
}

header {
	border-bottom: solid 2px #ddd; 
	padding: 0 0 2rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

main { 
	margin: 0 auto; 
	max-width: 900px; 
	background: #fff;
	padding: 3rem;
	border-radius: 10px; 
}

a {
	color: var(--text);
	border-bottom: solid 2px var(--accent);
	text-decoration: none;
}

hr {
	border: 0; 
	background: 0;
	border-bottom: solid 2px #ddd;
	margin: 2rem 0;
}

.logo {
	max-width: 100%;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.button {
	text-decoration: none; 
	border: solid 2px var(--accent); 
	padding: 1rem; 
	display: block; 
	background: var(--accent);
	border-radius: 10px; 
	width: 200px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(100,100,100,.2);
	color: black;
	font-weight: bold; 
}
.button:hover {
	opacity: .7;
}

.PriceColumn {
	background: red;
}

@media (max-width: 600px) {
	header {
		flex-direction: column; 
		align-items: normal;
	}
	.grid {
		grid-template-columns: 1fr;
	}
	.button {
		margin-top: 2rem;
/*		width: 100%;*/
		display: block;
	}
}