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

body {
	background-image: url(/images/BG_1.webp);
	background-size: cover;
}

:root {
	font-family: Archivo-Variable, sans-serif;
	color-scheme: light;
	color: black;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;

	--color-bgs-light: white;
	--color-text: black;

	--width-mobile: 700px;
}

@font-face {
	font-family: Archivo-Variable;
	src: url("../fonts/Archivo-Variable.woff2") format("woff2-variations");
}

@font-face {
	font-family: Archivo-Variable-Italic;
	src: url("../fonts/Archivo-Italic-Variable.woff2") format("woff2-variations");
}

h1,
h2,
h3,
h4,
h5,
p,
a {
	font-family: Archivo-Variable;
}

h1,
h2,
h3,
h4,
h5,
h1>a {
	font-variation-settings: "wdth" 125;
}

p,
a {
	font-variation-settings: "wdth" 90;
}

h1 {
	font-weight: 750;
	font-size: 32px;

	margin: 0px 0px 25px 0px;
}

h2 {
	font-weight: 400;
	font-size: 24px;

	margin: 0px;

	text-align: center;

	& strong {
		font-weight: 550;
	}
}

h3 {
	font-weight: 400;
	font-size: 24px;

	margin: 0px;

	text-align: center;
}

p {
	white-space: pre-line
}

.menu-link {
	text-decoration: none;
}

a
{
	color: var(--color-text);
	text-decoration: underline dotted 2px;
}

a:focus {
	text-decoration: underline;
}

div {
	margin: 0px;
}

ul {
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

li>p {
	margin: 0px 0px 0px 15px;
}