body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
		"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: rgba(249, 249, 249, 1);
}

img.heroImage {
	width: 100%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}

div.gameryIcon {
	width: 400px;
	height: 400px;
	background-image: url("./images/GoalsIcon.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: auto;
	margin-right: auto;
}

div.appstoreBadge {
	width: 180px;
	height: 60px;
	background-image: url("./images/appstore.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

div.hero {
	max-width: 1200px;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 200px;
}

h1 {
	font-size: 4vw;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

p.hero-largeTitle {
	font-size: 12vw;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

span.hero-largeTitle-gradient {
	background-image: linear-gradient(135deg, #278eff, #4afe6f);
	background-size: 100%;
	background-repeat: repeat;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-box-decoration-break: clone;
}

p.hero-subtitle {
	font-size: 2vw;
	padding: 0;
	margin: 0;
	color: color(srgb 0.472 0.482 0.515);
	text-align: center;
	text-transform: uppercase;
	margin-top: 30px;
}

div.content {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
}

.cardsContainer {
	width: 100%;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

div.cardSmall {
	padding: 30px;
	background: white;
	border-radius: 40px;
}

div.cardSmall#blue {
	background-image: linear-gradient(180deg, #00b2ff, #007aff);
	background-size: 100%;
	background-repeat: repeat;
}

div.cardSmall#dark {
	background-image: linear-gradient(180deg, #191849, #0e0d2c);
	background-size: 100%;
	background-repeat: repeat;
}

div.cardLarge {
	padding: 30px;
	background: white;
	border-radius: 30px;
	margin-bottom: 20px;
}

h3 {
	font-size: 26px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	margin-bottom: 10px;
}

h3#white {
	color: white;
}

h3#center {
	font-size: 44px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

p.cardText {
	font-size: 18px;
	padding: 0;
	margin: 0;
	color: #8e939e;
	line-height: 26px;
}

p.cardText#white {
	color: rgba(255, 255, 255, 0.85);
}

p.cardText#center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	max-width: 500px;
}

img.icon {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
}

footer {
	box-sizing: border-box;
	width: 100%;
	padding: 30px;
	text-align: center;
	line-height: 44px;
}

a {
	text-decoration: none;
	color: #007aff;
}

a:hover {
	text-decoration: underline;
}

a#footer {
	margin-left: 10px;
	margin-right: 10px;
}

a.downloadButton {
	background-color: #007aff;
	border-radius: 40px;
	padding: 8px;
	padding-left: 14px;
	padding-right: 14px;
	color: white;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

a.downloadButton:hover {
	background-color: #278eff;
	text-decoration: none;
}

a.downloadButton:active {
	background-color: #0e6fd9;
	text-decoration: none;
}

div.topBar {
	position: fixed;
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	z-index: 10;
}

.gradient-blur {
	width: 100%;
	position: fixed;
	height: 160px;
	top: 0;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	background-attachment: fixed;
	-webkit-mask-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 1) 60%,
		rgba(0, 0, 0, 1) 80%,
		rgba(0, 0, 0, 1) 90%
	);
	transform: rotate(180deg);
}

div.topBarContent {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-left: 30px;
	padding-right: 30px;
}

div.topBarLeft {
	float: left;
	margin-top: 14px;
}

div.topBarRight {
	float: right;
	margin-top: 20px;
}

@media only screen and (max-width: 800px) {
	div.gameryIcon {
		width: 300px;
		height: 300px;
	}

	.cardsContainer {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #1c1c1c;
		color: rgb(246, 246, 246);
	}

	h1 {
		color: rgb(246, 246, 246);
	}

	h3 {
		color: rgb(246, 246, 246);
	}

	div.cardLarge {
		background: rgb(34, 34, 34);
	}

	div.cardSmall {
		background: rgb(34, 34, 34);
	}

	p.cardTitle {
		color: rgb(246, 246, 246);
	}
}
