body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
		Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	color: #0b0b0b;
	background-image: url("bg.png");
	background-size: cover;
	background-position: center bottom;
	font-smooth: never;
	margin: 0;
}

.container {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.content {
	padding: 40px;
	color: white;
}

.background {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url("bg.png");
	background-size: cover;
	z-index: -1;
}

.hero {
	width: 90%;
	max-width: 950px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 150px;
}

.heroText {
	position: relative;
	font-size: 4vh;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	color: white;
	font-weight: 600;
	margin-bottom: 0;
}

.heroText2 {
	position: relative;
	font-weight: 400;
	font-size: 22px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	color: gray;
}

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

@media only screen and (max-width: 1200px) {
	.container {
		position: relative;
	}
}

@media only screen and (max-width: 1200px) {
	.cardsContainer {
		grid-template-columns: repeat(1, 1fr);
	}
}

.card {
	background-color: #fbfbfd;
	background: blur(20);
	border-radius: 10px;
	padding: 30px;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.card-icon#charts {
	background-image: url("charts.png");
}

.card-icon#forum {
	background-image: url("forum.png");
}

.card-icon#facebook {
	background-image: url("facebook.svg");
}

.card-title {
	position: relative;
	font-size: 30px;
	color: white;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.card-text {
	position: relative;
	font-weight: 400;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.65);
	padding: 0;
	margin: 0;
	margin-top: 10px;
	margin-bottom: 10px;
}

a {
	color: #319eff;
	text-decoration: none;
	font-size: 17px;
	font-weight: 400;
}

a#button {
	display: inline-block;
	text-decoration: none;
	font-size: 17px;
	font-weight: 400;
	padding: 15px;
	margin-top: 15px;
	color: white;
	border-radius: 200px;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

a#button:hover {
	border: 1px solid white;
	color: white;
	background: rgba(255, 255, 255, 0.6);
}

.footer {
	box-sizing: border-box;
	width: 100%;
	padding: 30px;
	color: rgba(255, 255, 255, 0.8);
}