* {
	margin: 0;
	padding: 0;
}
html,
body {
	width: 100%;
}
ul,
ol {
	list-style: none;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
button,
input,
textarea,
select {
	background: none;
	border: none;
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
h1 {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	letter-spacing: var(--letter-spacing-h1);
	margin: 0 0 var(--spacing-md) 0;
	color: var(--color-text);
}
h2 {
	font-size: var(--font-size-h2);
	font-weight: var(--font-weight-h2);
	line-height: var(--line-height-h2);
	letter-spacing: var(--letter-spacing-h2);
	margin: 0 0 var(--spacing-sm) 0;
	color: var(--color-secondary, #939393);
}
h3 {
	font-size: var(--font-size-h3, 1.25rem);
	font-weight: var(--font-weight-h3, 600);
	line-height: var(--line-height-h3, 1.4);
	margin: 0 0 var(--spacing-sm) 0;
	color: var(--color-text);
}
p {
	margin: 0 0 var(--spacing-md) 0;
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-text);
}
small {
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-small);
	line-height: var(--line-height-small);
	color: var(--color-text);
}
a {
	color: var(--color-link, var(--color-text));
	transition: color 0.2s ease;
}
a:hover {
	color: var(--color-link-hover, var(--color-primary));
}
@media (max-width: 767px) {
	h1 {
		font-size: var(--font-size-h1-mobile, var(--font-size-h1));
	}
	h2 {
		font-size: var(--font-size-h2-mobile, var(--font-size-h2));
	}
	body {
		font-size: var(--font-size-body-mobile, var(--font-size-body));
	}
	p {
		font-size: var(--font-size-body-mobile, var(--font-size-body));
	}
	small {
		font-size: var(--font-size-small-mobile, var(--font-size-small));
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	h1 {
		font-size: var(--font-size-h1-tablet, var(--font-size-h1));
	}
	h2 {
		font-size: var(--font-size-h2-tablet, var(--font-size-h2));
	}
	body {
		font-size: var(--font-size-body-tablet, var(--font-size-body));
	}
	p {
		font-size: var(--font-size-body-tablet, var(--font-size-body));
	}
	small {
		font-size: var(--font-size-small-tablet, var(--font-size-small));
	}
}
.container {
	width: 100%;
	max-width: 728px;
	margin: 0 auto;
	padding: 0 1rem;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	.container {
		padding: 0 2rem;
		max-width: 100%;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.container {
		padding: 0 6rem;
		max-width: 100%;
	}
}
@media (min-width: 1024px) {
	.container {
		padding: 0;
		max-width: 728px;
		margin: 0 auto;
	}
}
.copyright {
	text-align: center;
	color: #939393;
	color: var(--color-secondary, #939393);
	font-size: var(--font-size-small, 0.875rem);
	font-weight: var(--font-weight-small, 400);
	line-height: 1.4;
	margin-bottom: 24px;
}
.home-hook {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}
.home-title {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	color: var(--color-text);
}
.download-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.app-store-button,
.google-play-button {
	display: inline-block;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
	-webkit-touch-callout: none !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	touch-action: manipulation;
	backface-visibility: hidden;
	transform: translateZ(0);
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}
.app-store-button img,
.google-play-button img {
	height: 100%;
	width: auto;
	display: block;
	pointer-events: none;
	-webkit-user-drag: none;
	user-drag: none;
}
@media (hover: hover) and (pointer: fine) {
	.app-store-button:hover,
	.google-play-button:hover {
		transform: translateY(-2px);
		opacity: 0.95;
	}
}
.app-store-button:active,
.google-play-button:active {
	opacity: 0.85;
}
.app-store-button:focus-visible,
.google-play-button:focus-visible {
	outline: 2px solid rgba(0, 123, 255, 0.5);
	outline-offset: 2px;
}
.download-buttons.ios-phone .google-play-button,
.download-buttons.android-phone .app-store-button {
	display: none;
}
@media (max-width: 767px) {
	.home-title {
		margin: 0 0 0.75rem;
	}
	.download-buttons > * {
		margin: 0.75rem;
	}
	.download-buttons {
		flex-direction: column;
	}
	.app-store-button,
	.google-play-button {
		height: 52px;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.home-title {
		margin: 0 0 0.5rem;
	}
	.download-buttons > * {
		margin: 0.75rem;
	}
	.download-buttons {
		flex-direction: row;
	}
	.app-store-button,
	.google-play-button {
		height: 52px;
	}
}
@media (min-width: 1024px) {
	.home-title {
		margin: 0 0 0.5rem;
	}
	.download-buttons > * {
		margin: 0.75rem;
	}
	.download-buttons {
		flex-direction: row;
	}
	.app-store-button,
	.google-play-button {
		height: 52px;
	}
}
.more-button-container {
	text-align: center;
	padding-bottom: 16px;
	width: 100%;
}
.more-button {
	color: var(--color-text);
	text-decoration: none;
	opacity: 1;
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	-webkit-tap-highlight-color: transparent;
	padding: 0.5rem 1rem;
	display: inline-block;
}
.more-button:active {
	opacity: 0.8;
}
.more-button:focus-visible {
	outline: 2px solid rgba(0, 123, 255, 0.5);
	outline-offset: 2px;
}
@media (max-width: 767px) {
	.more-button {
		font-size: var(--font-size-body-mobile, var(--font-size-body));
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.more-button {
		font-size: var(--font-size-body-tablet, var(--font-size-body));
	}
}
.cookies-container {
	display: flex;
	flex-direction: column;
}
.cookies-container .container {
	padding-top: 96px;
	padding-bottom: 48px;
}
.cookies-title {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	color: var(--color-text);
	margin: 0 0 24px 0;
	text-align: left;
}
.cookies-date {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: #939393;
	color: var(--color-secondary, #939393);
	margin: 0 0 24px 0;
	text-align: left;
}
.cookies-content {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-text);
	text-align: left;
	white-space: pre-line;
}
.privacy-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.privacy-container .container {
	flex: 1;
	padding-top: 96px;
	padding-bottom: 48px;
}
.privacy-title {
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	margin: 0 0 24px 0;
	text-align: left;
}
.privacy-date {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: #939393;
	color: var(--color-secondary, #939393);
	margin: 0 0 24px 0;
	text-align: left;
}
.privacy-content {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-text);
	text-align: left;
	white-space: pre-line;
}
.terms-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.terms-container .container {
	flex: 1;
	padding-top: 96px;
	padding-bottom: 48px;
}
.terms-title {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	color: var(--color-text);
	margin: 0 0 24px 0;
	text-align: left;
}
.terms-date {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: #939393;
	color: var(--color-secondary, #939393);
	margin: 0 0 24px 0;
	text-align: left;
}
.terms-content {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-text);
	text-align: left;
	white-space: pre-line;
}
.more-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.more-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.more-link {
	color: var(--color-text);
	text-decoration: none;
	opacity: 1;
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	-webkit-tap-highlight-color: transparent;
	padding: 0.5rem 1rem;
	text-align: center;
	display: block;
}
.more-buttons > * {
	margin: 0.5rem 0;
}
.more-link:active {
	opacity: 0.8;
}
@media (max-width: 767px) {
	.more-link {
		font-size: var(--font-size-body-mobile, var(--font-size-body));
	}
	.more-buttons > * {
		margin: 0.75rem 0;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.more-link {
		font-size: var(--font-size-body-tablet, var(--font-size-body));
	}
	.more-buttons > * {
		margin: 0.75rem 0;
	}
}
@media (min-width: 1024px) {
	.more-buttons > * {
		margin: 0.75rem 0;
	}
}
.error-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.error-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.error-title {
	color: var(--color-text);
	text-decoration: none;
	opacity: 1;
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	-webkit-tap-highlight-color: transparent;
	padding: 0.5rem 1rem;
	text-align: center;
	display: block;
}
.error-content > * {
	margin: 0.5rem 0;
}
@media (max-width: 767px) {
	.error-title {
		font-size: var(--font-size-h1-mobile, var(--font-size-h1));
	}
	.error-content > * {
		margin: 0.75rem 0;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.error-title {
		font-size: var(--font-size-h1-tablet, var(--font-size-h1));
	}
	.error-content > * {
		margin: 0.75rem 0;
	}
}
@media (min-width: 1024px) {
	.error-content > * {
		margin: 0.75rem 0;
	}
}
:root {
	--color-background: #ffffff;
	--color-text: #000000;
	--color-primary: #000000;
	--color-secondary: #939393;
}
[data-theme='dark'] {
	--color-background: #000000;
	--color-text: #ffffff;
	--color-primary: #ffffff;
	--color-secondary: #939393;
}
@import 'components/copyright.css';
@import 'pages/home.css';
* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	background-color: var(--color-background);
	color: var(--color-text);
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.site-footer {
	margin-top: auto;
}
.cookies-container {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
.cookies-container .container {
	flex: 1;
}
