@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@300;400;500;600;700&display=swap");

:root {
	--color-primary: #023047;
	--color-text-white: #fff;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}
p {
	display: inline-block;
	margin: 0 !important;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Commissioner", sans-serif;
	background: var(--color-primary, #023047);
	box-sizing: border-box;
}

.backgroundWrap {
	min-height: 100%;
	width: 100vw;
	background: var(--color-primary, #023047);
	background-image: url("background.png");
	background-size: 100% 60%;
	background-repeat: no-repeat;
	background-position: bottom;
}

.appContainer {
	height: 100%;
	width: 100vw;
	display: flex;
	flex-direction: column;
	gap: 160px;
	padding: 48px;
	align-items: center;
}

.headerContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: fit-content;
	gap: 22px;
}

.contentContainer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 80px;
	height: fit-content;
}

.headerXSmall {
	color: var(--color-text-white, #fff);
	font-family: Commissioner;
	font-size: 30px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.headerSmall {
	color: var(--color-text-white, #fff);
	font-family: Commissioner;
	font-size: 60px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	width: 100%;
	text-align: left;
}

.headerMedium {
	color: var(--color-text-white, #fff);
	font-family: Commissioner;
	font-size: 72px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	letter-spacing: -1.44px;
	max-width: 664px;
}

.headerLarge {
	color: var(--color-text-white, #fff);
	font-family: Commissioner;
	font-size: 96px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	letter-spacing: -1.92px;
	max-width: 690px;
}

.imgDiv {
	width: 574px;
	height: auto;
	border-radius: 8px;
	background: url(../src/assets/app-preview.png) lightgray 50% / cover no-repeat;
	box-shadow: 0px 12px 12px 0px rgba(0, 16, 28, 0.35),
		0px 4px 24px -2px rgba(0, 16, 28, 0.25),
		0px 2px 32px -3px rgba(0, 16, 28, 0.15);
}

.imgDiv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iconContainer {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
	gap: 10px;
}

.icon-svg-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.listContainer {
	display: flex;
	width: 600px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.listItem {
	display: flex;
	padding: 32px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	border-radius: 16px;
	border: 1px solid #fff;
	background: var(--color-primary, #023047);
}

.listItem p {
	color: var(--color-text-white, #fff);
	font-family: Commissioner;
	font-size: 32px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

@media (max-width: 900px) {
	.appContainer,
	.headerContainer,
	.contentContainer,
	.listContainer {
		flex-direction: column !important;
	}
	.appContainer {
		gap: auto;
	}
	.headerContainer {
		gap: 24px;
	}
	.contentContainer {
		gap: 24px;
	}
	.listContainer {
		gap: 16px;
		width: 100%;
	}

	.icon-svg-container {
		width: 12px;
		height: 12px;
	}
	.imgDiv {
		width: 100%;
		max-width: 350px;
	}
	.headerXSmall {
		font-size: 10px;
	}
	.headerSmall {
		font-size: 32px;
		text-align: center;
	}
	.headerMedium {
		font-size: 24px;
		max-width: 100%;
	}

	.headerLarge {
		color: var(--color-text-white, #fff);
		font-family: Commissioner;
		font-size: 32px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		letter-spacing: -0.64px;
	}

	.listItem {
		padding: 16px;
	}

	.listItem p {
		font-size: 16px;
		text-align: center;
	}
}
