:root {
	--tab-bg-color: #44afff;
	--bg-color: #6bd6ff;
}

@font-face {
	font-family: "Quicksand";
	src: url("../assets/fonts/quicksand.bold-regular.otf") format("opentype")
}

* {
	font-family: "Quicksand";
}

body {
	background-image: url("../assets/images/ws_bg_tile.png");
	background-size: 100% 100%;
	text-align: center;
	font-size: 16px;
}

header {
	position: relative;
	z-index: 5;
}

header img {
	width: 40vw;
}

footer {
	z-index: 7;
	position: relative;
	width: 100%;
	left: -1ch;
	bottom: -1ch;
	padding-top: 3ch;
	padding-bottom: 3ch;
	color: white;
	background: rgb(56, 134, 120);
	background: linear-gradient(0deg, rgba(56, 134, 120, 1) 0%, rgba(56, 134, 120, 0.8968181022408963) 100%);
	box-shadow: 0px -130px 10px 1px rgba(56, 134, 120, 0.85);
	-webkit-box-shadow: 0px -130px 10px 1px rgba(56, 134, 120, 0.85);
	-moz-box-shadow: 0px -130px 10px 1px rgba(56, 134, 120, 0.85);
}

footer a {
	color: white;
}

h1 {
	font: "Quicksand"
}

img {
	margin: 1.5ch;
}

.text-box {
	z-index: 5;
	position: relative;
	top: 0;
	text-align: justify;
	max-width: 79ch;
	margin-left: 2ch;
	margin-right: 2ch;
	margin-bottom: 200px;
}

.main-tab {
	position: relative;
	background-color: var(--tab-bg-color);
	z-index: 9999;
	font-size: 2.5rem;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	margin: 15px 0 50px 0;
	padding: 0;
}

.main-tab div {
	display: flex;
	justify-content: center;
	/* width: 20%; */
	margin: auto;
}

.main-tab a {
	color: white;
	text-decoration: none;
	height: 100%;
	padding: 8px 10%;
}

#stars {
	z-index: 1;
	position: absolute;
	top: 10ch;
	left: 0;
}

#stars * {
	width: 30vw;
	display: inline-flex;
	margin: 1.5ch;
}

#earth {
	z-index: 2;
	position: sticky;
	overflow: hidden;
	left: 15ch;
}

#gallery {
	z-index: 5;
	position: relative;
	top: 0;
}

#download-badges {
	z-index: 5;
	position: sticky;
	top: 0;
}

@media screen and (max-width: 800px) {
	body {
		align-content: center;
	}

	main {
		position: relative;
		align-items: center;
		;
	}

	img {
		width: 50vw
	}

	header img {
		z-index: 5;
		position: relative;
		width: 90vw;
		top: 0;
		left: -1ch;
	}

	.main-tab div {
		margin-left: 5%;
	}

	#gallery {
		z-index: 5;
		position: relative;
		display: block;
		top: 0;
	}

	#download-badges {
		z-index: 5;
		position: relative;
		display: block;
		top: 0;
	}

	#stars * {
		z-index: 1;
		position: relative;
		width: 80vw;
		display: block;
		top: 0;
	}

	#earth {
		z-index: 2;
		position: sticky;
		bottom: -3ch;
		width: 100%;
		overflow-x: hidden;
		align-items: center;
		justify-content: center;
	}

	#earth img {
		display: block;
		width: 200vw;
	}
}