#myearth {
	width: 100%;
	height: 65vh;
	max-height: 65vw;
	max-width: 65vh;
	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: 65vh;
	height: 65vh;
	max-height: 65vw;
	transform: translate(-50%, -50%);
	
	
	z-index: 200;
	pointer-events: none;
}
