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

:root {
	--bg: white;
	--fg: #212121;
	--color-primary: #009B40;
	--color-on-primary: white;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 4em;
	height: 100%;
}

body {
	background-color: var(--bg);
	color: var(--fg);
	font-family: 'Inter', sans-serif;
	font-size: .9em;
}

a {
	display: inline-block;
}

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

ul {
	list-style-type: none;
}

button,
input,
select,
textarea {
	font-size: inherit;
	font-style: inherit;
	font-family: inherit;
	border: none;
}

button {
	background: transparent;
	color: inherit;
}

button,
label {
	cursor: pointer;
}

.row {
	display: flex;
}

.col {
	display: flex;
	flex-direction: column;
}

.grow {
	flex-grow: 1;
}

.wrap {
	flex-wrap: wrap;
}

.aic {
	align-items: center;
}

.jcc {
	justify-content: center;
}

.tc {
	text-align: center;
}

img {
	width: 100%;
}