@import url(
	'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap'
);

* {
	box-sizing: border-box;
	font-size: 62.5%;
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p, span {
	margin: 0;
	color: var(--fontColor);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--title);
	font-style: normal;
	font-weight: 600;
}

p, span, a {
	font-family: var(--text);
	font-style: normal;
	font-weight: 400;
}

a {
	color: var(--blue);
	text-decoration: none;
}

body {
	background-color: var(--background);
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 16px;
}

p, a {
	font-size: 16px;
}

