html,
body {
	margin: 0;
	padding: 0;
	background-image:url('night-sky.png');
	
	font-family: sans-serif;
	font-size: 16px;
}

#wrapper {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	
	position: relative;
	max-width: 100%;
	min-height: 100vh;
}

#wrapper-in {
	width: 100%;
	max-width: 100vh;
}


#photo {
	position: absolute;
	left: -180px;
	top: -180px;
	width: 360px;
	height: 360px;
	background: black center center no-repeat;
	background-size: cover;
	border-radius: 4px;
	filter: drop-shadow(0 2px 8px RGBA(0,0,0,0.5));
	transform: scale(0.001);
	transition: transform 0.1s ease-out;
}
#photo.photo-appear {
	transition: transform 0.15s ease-out;
	transform: scale(1);
}

#close-photo {
	position: absolute;
	right: 2px;
	top: 2px;
	width: 32px;
	height: 32px;
	background: url('../cross.png') center center no-repeat;
	background-size: 16px 16px;
	cursor: pointer;
	pointer-events: all;
}

#back-link {
	font-family: BonomiBold;
	position: fixed;
	bottom: 70px;
	left: 20px;
	background: rgb(255, 255, 255, 0.6);
	color: #ffffff;
	padding: 0.5em 1em 1em 1em;
	font-size: 20px;
	z-index: 10000;
	border-right: 1px RGBA(255,255,255,0.5) solid;
	border-bottom: 1px RGBA(255,255,255,0.5) solid;
}

.earth-container{width:1500px; height: 1000px;margin-top:0px; margin-left: -200px;}
@media screen and (max-width:1024px)
{
	.earth-container{width:400px; height: 600px;margin-top:-80px; margin-left: 0px;}
}
