@font-face {
	font-family: 'InstrumentSans';
	src:
		url('/fonts/InstrumentSans-Regular.woff2') format('woff2'),
		url('/fonts/InstrumentSans-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'InstrumentSans';
	src:
		url('/fonts/InstrumentSans-SemiBold.woff2') format('woff2'),
		url('/fonts/InstrumentSans-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'InstrumentSans';
	src:
		url('/fonts/InstrumentSans-Bold.woff2') format('woff2'),
		url('/fonts/InstrumentSans-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--primary-color: #4285a2;
	--light-grey: rgba(0, 0, 0, 0.08);
	--black: #000;
	--white: #fff;
}

body {
	margin: 0;
	padding: 0;
	height: 100dvh;
	font-family:
		InstrumentSans,
		-apple-system,
		BlinkMacSystemFont,
		San Francisco,
		Roboto,
		Segoe UI,
		Helvetica Neue,
		sans-serif;
}

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