@font-face { font-family: SourceSansPro; src: url('fonts/SourceSansPro-Regular.ttf'); }
@font-face { font-family: SourceSansPro; font-weight: bold; src: url('fonts/SourceSansPro-Bold.ttf'); }

html, body {
	background-image: url('img/background.png');
	background-repeat: no-repeat;
	background-position: top left;
	height: 100%;
	margin: 0;

	font-family: SourceSansPro, sans-serif;
}

a {
	/* solid/blue - secondary */
	color: #162A6B;
}

.hfs_landing_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	overflow: auto;
}

.hfs_landing_content_top {
	width: 190px;

	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	gap: 16px;

	box-sizing: border-box;
}

.hfs_blurry_bg {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(40px);
	border-radius: 24px;
}

.hfs_app_logo {
	width: 150px;
	height: 150px;

	filter: drop-shadow(0px 20px 48px rgba(22, 42, 107, 0.15));
}

.hfs_landing_content_text {
	margin-top: 64px;
	width: 280px;
	text-align: center;

	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;


	/* solid/blue - secondary */
	color: #162A6B;
}

.hfs_store_link_container {
	display: flex;
	flex-direction: column;
	padding: 0px;
	gap: 8px;
}

.hfs_store_link_container a {
	display: flex;
}

.hidden {
	display: none;
}

.hfs_fade_foreground {
	background: linear-gradient(343.22deg, #FFFFFF 12.8%, rgba(255, 255, 255, 0) 87.35%);
}

.hfs_footer_container {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.hfs_footer_link_container {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 32px;

	margin: 0px 9px;
}

.hfs_footer_link_container a {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;

	/* solid/blue light */
	color: #455589;
}

.hfs_footer_copyright_text {
	text-align: center;

	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;


	/* solid/blue light */
	color: #455589;
}

/* Show default language, when JavaScript is disabled. */
[lang] {
  display: none;
}
[lang=en] {
  display: unset;
}