@import "./resets.css";

@import "../fonts/stylesheet.css";

html,
body {
	font-family: "TT Neoris Trial", sans-serif;
	font-size: 10px;
    
}
svg {
	width: 100%;
	height: 100%;
}

.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	color: #fff;
}
.container-fluid {
	height: 100%;
	max-width: 1920px;
	padding: 0 30px;
	margin: 0 auto;
}

.header {
	width: 100%;
	background-color: #fff;
}
.header__wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px 0;
}

.header__logo {
	width: 12.2rem;
	height: 2.1rem;
}

.main {
	height: 100%;
	background: url("../images/bg.webp") no-repeat center center / cover;
	flex: 1;
}
.main__wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 120px 0 30px;
}

.main__logo {
	margin-bottom: 90px;
	width: 29.7rem;
	height: 7.4rem;
}
.main__icon {
	margin-bottom: 15px;
	width: 7.1rem;
	height: 7.1rem;
}
.main__title {
	text-align: center;
	font-size: 3.2rem;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 12px;
}
.main__subtitle {
	text-align: center;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

@media screen and (min-width: 992px) {
	html,
	body {
		font-size: 11px;
	}
}
@media screen and (min-width: 1440px) {
	html,
	body {
		font-size: 12px;
	}
}
@media screen and (min-width: 1920px) {
	html,
	body {
		font-size: 14px;
	}
}
