@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
	--text-white: rgba(255, 255, 255, 0.95);
}
*,
*:before,
*:after {
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Poppins, sans-serif;
}
body {
	margin: 0px;
	padding: 0px;
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 24px;
	padding-left: 24px;
}

@media (min-width: auto) {
	.container {
		max-width: auto;
	}
}

@media (min-width: 680px) {
	.container {
		max-width: 680px;
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 936px) {
	.container {
		max-width: 936px;
	}
}

@media (min-width: 1120px) {
	.container {
		max-width: 1120px;
	}
}
.hero {
	display: block;
	position: relative;
	height: 100vh;
	width: 100vw;
	background: url(/src/img/background.jpg);
	background-size: cover;
}
.center-contain {
	display: flex;
	height: 100vh;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 80px;
}
.logo {
	height:80px;
}
.subtitle {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
	text-align: center;
	color: var(--text-white);
}

.title-sub {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.coming-soon {
	font-size: 21px;
	line-height: 32px;
	color: var(--text-white);
}

@media (min-width: 1216px) {
	.container {
		max-width: 1216px;
	}
}

@media (min-width: 1696px) {
	.container {
		max-width: 1696px;
	}
}

@media (max-width: 786px) {
	.logo {
		height: 30px;
	}

	.hero {
		display: block;
		position: relative;
		height: 100vh;
		width: 100vw;
		background: url(/src/img/background-inv.jpg);
		background-size: cover;
	}
	.subtitle {
		font-size: 18px;
		letter-spacing:1px;
		line-height:28px;
		
	}
}
