body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding: 24px 8px;
	background-color: #FAFAFA;
	color: #1D1D1B;
	text-align: center;
}

#app-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 0;
}

#app-description {
	text-align: initial;
	max-width: 1000px;
	padding: 20px;
}

#app-subtitle {
	margin-bottom: 12px	;
}

#app-icon {
	width: 256px;
	height: 256px;
	display: block;
	border-radius: 62px;
	box-shadow: 0px 3px 5px -1px rgba(1, 1, 1, 0.2),0px 6px 10px 0px rgba(1, 1, 1, 0.14),0px 1px 18px 0px rgba(1,1,1,.12);
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-weight: normal;
	margin: 0;
}

#app-store-badge {
	margin: 24px 0 24px 0;
	max-width: 60vw;
}

#featured-screenshots {
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	max-width: calc(100vw - 40px);
	align-items: center;
	padding: 12px 20px 20px 20px;
	column-gap: 12px;
	margin: 0;
}

#watch-screenshots {
	max-width: 266px;
	display: flex;
	flex-direction: column;
	align-items: center;
	row: 20px;
	margin: 0;
}

.featured-screenshot {
	max-width: 441px;
}

.watch-screenshot {
	margin-top: 20px;
}

#features {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 24px 0;
}

#footer {
	margin: 40px 0 24px 0;
}

.feature {
	width: 160px;
	background-color: #fff;
	margin: 12px;
	padding: 24px;
	text-align: center;
	border-radius: 16px;
	vertical-align: middle;
	box-shadow: 0px 3px 5px -1px rgba(1, 1, 1, 0.2),0px 6px 10px 0px rgba(1, 1, 1, 0.14),0px 1px 18px 0px rgba(1,1,1,.12);
}

.feature-icon {
	margin-bottom: 12px;
}

.feature-icon svg {
	border-radius: 50%;
	fill: #FAFAFA;
	background-color: #444;
	width: 48px;
	height: 48px;
}

.feature.dark {
	background-color: #303030;
	color: #fafafa;
}

.feature.dark .feature-icon svg {
	fill: #1D1D1B;
	background-color: #fff;
}

@media (max-width: 768px) {

	h2 {
		font-size: 1.5rem;
	}

	#app-icon {
		width: 128px;
		height: 128px;
		border-radius: 31px;
	}

	#app-store-badge {
		margin: 12px 0;
	}

	#features {
		margin-bottom: 8px;
	}

	.featured-screenshot img {
		max-width: 90vw;
	}

	.feature {
		width: 30vw;
		margin: 8px;
		padding: 12px;
		border-radius: 12px;
		font-size: 0.8rem;
	}

	.feature-icon svg {
		border-radius: 50%;
		width: 32px;
		height: 32px;
	}
}


@media (prefers-color-scheme: dark) {
	body {
		background-color: #252526;
		color: #fafafa;
		padding: 12px 8px;
	}

	a {
		color: #7ea7d9;
	}

	.feature {
		background-color: #303030;
	}

	.feature-icon svg {
		fill: #1D1D1B;
		background-color: #fff;
	}
}