@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('/fonts/InterVariable.woff2') format('woff2');
}

@font-face {
	font-family: Inter;
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('/fonts/InterVariable-Italic.woff2') format('woff2');
}

@page {
	margin: 0.5cm 0;
}

:root {
	--gap: 16px;
	--color-typography: #333;
	--color-primary: rgb(0, 122, 255);
	--color-secondary: rgb(245, 245, 245);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-typography);
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	background: #fff;
}

a {
	color: var(--color-typography);
	text-underline-position: under;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-style: hidden;

	tr:nth-child(2n + 1) td {
		background: var(--color-secondary);
	}

	th {
		padding: 12px 24px;
		&:first-child {
			text-align: left;
		}
	}

	td {
		padding: 8px 24px;
		&:first-child {
			border-radius: 6px 0 0 6px;
		}
		&:last-child {
			border-radius: 0 6px 6px 0;
		}
		&:not(:first-child) {
			text-align: center;
		}
	}
}
