:root {

	--text-light: #111;
	--text-dark: #fff;
	--bg-color-light: #f1f0ebd7;
	--bg-color-dark: #222120;
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, serif;
}

body {
	color: var(--text-light);
	background-color: var(--bg-color-light);
}

* {
	font-family: var(--font-family);
	font-size: 16px;
}

svg.EZZINETitle {
	width: 30%;
	height: auto;
	display: block;
	margin: 0 auto;
}


svg.EZZINETitle path {
	fill: var(--text-light);
}

.site-homepage .EZZINETitle {
	width: 100%;
}

body.site-homepage {
	position: absolute;
	overflow: visible;
	min-height: 100%;
	min-width: 100%;
	display: grid;
	place-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 1.5em;
}

body.site-homepage p {
	font-size: 1em;
}

.card {
	margin: auto;
	width: 80svw;
	max-width: 900px;
	position: relative;
	z-index: 0;
	transform-origin: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	place-items: center;
	gap: 20px;
}

.stickers {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
}

.app-icon {
	position: relative;
	overflow: hidden;
	width: 40px;
	height: 40px;
	z-index: 2;
	rotate: 1.5deg;
}

.app-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nav-footer {
	display: flex;
	gap: 1em;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
	padding: 0;
	color: var(--text-light);
}

.nav-footer * {
	font-size: 0.9rem;
}

a {
	color: var(--text-light) !important;
	text-decoration: underline;
	font-weight: 600;
	transition: color 150ms ease;
}

.content {
	max-width: 800px;
	margin: auto;
	padding: 0 20px;
}

body.site-homepage p.philosophy{
	font-size: 1.2em;
}
body.site-homepage p.philosophy em{
	font-size: 1em;
	letter-spacing: 0.02em;
}

.faqGroup {
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 20px;
}

.faqGroup * {
	margin: 0;
}

/* phone size */
@media (max-width: 600px) {

	.site-homepage .EZZINETitle {
		width: 80%;
	}

	.card {
		width: 90svw;
	}

	.nav-footer {
		position: fixed;
		bottom: 10px;
		width: 100%
	}
}

@media (prefers-color-scheme: dark) {

	body {
		background-color: var(--bg-color-dark);
		color: var(--text-dark);
	}

	a {
		color: var(--text-dark) !important;
	}

	svg.EZZINETitle path {
		fill: var(--text-dark);
	}
}