@font-face {
	font-family: "Heebo";
	src: url(../fonts/heebo/Heebo-VariableFont_wght.woff2) format("woff2");
	src: url(../fonts/heebo/Heebo-VariableFont_wght.ttf) format("truetype");
	font-weight: 100 600;
}

:root {
	--main-max-width: 75%;
	--main-max-width-mobile: 95%;
	--primary-green-color: #045644;
	--primary-font-family: "Heebo", "Arial", sans-serif;
	--gray: #808080;
	--light-gray: rgb(155 152 152);
}

html {
	font-size: calc(1rem + 0.2vw);
	min-width: fit-content;
	width: 100%;
	height: 100%;
}

body {
	font-family: var(--primary-font-family);
	margin: auto;
	background-color: white;
	color: black;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

header {
	border-bottom: 0.1rem solid rgba(49, 49, 53, 0.08);
	width: 100%;
}

.logo svg {
	height: 2rem;
	width: 16rem;
	stroke-width: 0;
	stroke-linejoin: "miter";
	stroke-miterlimit: 2;
	fill: var(--primary-green-color);
	stroke: var(--primary-green-color);
}

@media (max-width: 425px) {
	.logo svg {
		width: 13rem;
	}
}

main {
	max-width: var(--main-max-width);
	flex: 1;
	width: 100%;
}

main > :not(h1, h2) {
	font-size: 0.8rem;
}

@media (max-width: 1024px) {
	main {
		max-width: var(--main-max-width-mobile);
	}

	main > :not(h1, h2) {
		font-size: unset;
	}
}

@media (min-width: 1025px) and (max-width: 1444px) {
	main {
		max-width: var(--main-max-width);
	}
}

footer {
	font-size: 0.6rem;
	color: var(--gray);
	padding: 5rem 0 1rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
}

footer > * {
	margin: 0 0.5rem 0 0.5rem;
	text-decoration: none;
	color: inherit;
}

footer > a:hover {
	text-decoration: underline;
	text-underline-offset: 0.1rem;
}
