@font-face {
	font-family: 'TWK Everett';
	src: url('/fonts/TWKEverett-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TWK Everett Bold';
	src: url('/fonts/TWKEverett-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TWK Everett Mono';
	src: url('/fonts/TWKEverettMono-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TWK Everett Mono Light';
	src: url('/fonts/TWKEverettMono-Light.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--site-max-width: 1905px;
	--color-bg: #faf9f3;
	--color-text: #151515;
	--color-muted: #3b3b3b;
	--color-footer-bg: var(--color-bg);
	--color-footer-text: var(--color-text);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
}

body {
	font-family: 'TWK Everett', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	background: var(--color-bg);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	overflow-x: hidden;
}

main {
	display: block;
	width: min(100%, var(--site-max-width));
	margin: 0 auto;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

