:root {
	--white: #fff9f5;
	--orange: #b85421;
	--yellow: #ffc901;

	/* Fonts */
	--sans: "Obviously", -apple-system, ui-sans-serif, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--mono: "Covik", ui-monospace, SFMono-Regular, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Semibold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Italic.woff") format("woff");
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Medium-Italic.woff") format("woff");
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Semibold-Italic.woff") format("woff");
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: "Covik";
	src: url("/fonts/Covik-Sans-Mono-Bold-Italic.woff") format("woff");
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: "Obviously";
	src: url("/fonts/Obviously-Semibold.woff2") format("woff");
	font-weight: 600;
	font-width: 100%;
}
@font-face {
	font-family: "Obviously";
	src: url("/fonts/Obviously-Extended_Semibold.woff2") format("woff");
	font-weight: 600;
	font-width: 150%;
}
html {
	background: var(--white);
	font-synthesis: none;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	margin: auto;
	display: flex;
	min-height: 100vh;
	scroll-behavior: smooth;
	scroll-padding-top: 1em;
}
body {
	color: black;
	font-family: var(--mono);
	font-size: 1em;
	font-weight: 500;
	padding: 1.5em;
	min-width: 0;
	max-width: 32em;
	margin: auto;
}
img {
	width: 100%;
	height: auto;
	margin: 0.5em 0;
}
h2 {
	color: var(--orange);
	font-size: 1.25em;
	font-weight: 700;
}
h3 {
	font-size: 1.25em;
	font-weight: 700;
}
button, h1, h2 {
	font-family: var(--sans);
}
button {
	cursor: pointer;
	font-size: 1.25em;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 0.5em 0.25em 0.625em 0.25em;
	margin: 0.5em 0;
	line-height: 1.25em;
	outline: none;
	border: none;
	background: var(--orange);
	color: var(--white);
}
button, img {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
h2, .phone {
	font-width: 150%;
}
mark, ::selection, ::target-text {
	background: var(--yellow);
	color: black;
}
ul {
	list-style-type: squares;
	padding-left: 1.5em;
}
@counter-style squares {
	system: cyclic;
	symbols: "•";
	suffix: " ";
}
hr {
	border: none;
	border-top: 2px solid var(--orange);
	margin: 2em 0;
}

/* main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2em;
}

@media (min-width: 72em) {
	body {
		max-width: 64em;
	}
	main {
		grid-template-columns: 1fr 1fr;
	}
} */

@media (prefers-color-scheme: dark) {
	:root {
		--white: #e1d2c8;
	}
}