@layer base {
	@font-face {
		font-family: 'ABeeZee';
		font-weight: 400;
		font-style: normal;
		src: url('/font/abeezee.woff2') format('woff2');
		font-display: swap;
	}
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}
#root,
#__next {
	isolation: isolate;
}

/* Custom CSS */
body {
	background-color: var(--color-background);

	font-family:
		'ABeeZee',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		'Open Sans',
		'Helvetica Neue',
		sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

p {
	font-size: var(--base-font-size);
	line-height: calc(var(--base-font-size) * 1.5);
	color: #2b2b2b;
}

.box {
	margin: var(--base-spacing);
	padding: calc(var(--base-spacing) * 2);
}

h2 {
	color: var(--color-primary);
}
