


#myearth {
	width: 100%;
	height: 100vh;
	max-height: 100vw;
	overflow: hidden;
	opacity: 0;
	transition: opacity 1.5s ease-in;
}

#myearth.earth-ready {
	opacity: 1;
}

#myearth::before {
	content: none;
}


/* background glow */

#glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 100vh;
	height: 100vh;
	max-height: 100vw;
	transform: translate(-50%, -50%);

	background: radial-gradient(ellipse at center, rgba(0, 156, 255, 0.05) 25%, rgba(0, 156, 255, 0.15) 53%, rgba(0, 156, 255, 0.05) 56%, rgba(0, 156, 255, 0) 70%);
	z-index: 200;
	pointer-events: none;
}


#back-link {
	position: fixed;
	top: 0;
	left: 0;
	background: #0d130e;
	padding: 0.5em;
	font-size: 26px;
	z-index: 10000;
	border-right: 1px RGBA(255, 255, 255, 0.5) solid;
	border-bottom: 1px RGBA(255, 255, 255, 0.5) solid;
}

#back-link img {
	display: block;
	width: 4em;
	height: auto;
}

#logo {
	margin: 0 auto 20px auto;
}

#info-div {
	position: fixed;
	top: 25%;
	left: 5%;
	text-align: right;
}

#text{
	font-size: 18px;
}

@media (max-width: 511px) {
	#back-link {
		font-size: 16px;
	}

	#info-div {
		position: fixed;
		bottom: 20px;
		left: 10%;
		top: auto;
		right: auto;
		text-align: right;
	}
}

#legal-footer-wrap {
	position: relative;
	height: 0;
	z-index: 10002;
	font-family: Arial, sans-serif;
}

#legal-footer {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
}

#legal-footer a {
	text-decoration: none;
	color: inherit;
	padding: 0 0.5em;
	font-size: 10px;
}