:root {
	--font-family-base: "Libre Baskerville", sans-serif;

	--dark: #000;
	--white: #fff;
	--gray: #545454;
	--primary: #212529;
}

body {
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--primary);
	background-color: var(--white);
}

h1,
h2 {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
}

h3 {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.1;
}

h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.wrapper {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	overflow: clip;

	main {
		flex-grow: 1;
	}
}

.container {
	max-width: 1356px;
	width: 100%;
	margin-inline: auto;
	padding-inline: 30px;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.visibility-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	border: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	clip-path: inset(100%) !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}
.form-wrapper {
	max-width: 550px;
	margin-inline: auto;
	margin-bottom: 16px;
}

/* #region MEDIA QUERIES */

@media (max-width: 1200px) {
	.container {
		max-width: 572px;
		padding-inline: 16px;
	}

	h1,
	h2 {
		font-size: 28px;
	}
}

@media (max-width: 744px) {
	.container {
		max-width: 100%;
		padding-inline: 12px;
	}
	h1,
	h2 {
		font-size: 24px;
	}
}

/* #endregion MEDIA QUERIES */
