html, body {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: relative;
}

#main {
	width: 100%;
	height: 100%;
	max-width: 1000px;
	max-height: 1000px;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}

#planet {
	width: 100%;
	height: 100%;
	transform: translate3d(0,0,0);
	transition: all 0.3s ease-in-out;
}

#planet.inactive {
	transform: translate3d(-100%, 0, 0);
}


#planet_video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#planet_name {
	position: absolute;
	left: 12%;
	bottom: 18%;
	display: flex;
	flex-direction: column;
	color: white;
}

#planet_name h2 {
	padding: 0;
	margin:0;
	color: #fae8d3;
	font-size: 20px;
	margin-bottom: 5px;
}

#planet_name h2::before {
	content: '';
    position: absolute;
    left: -70px;
    top: -12px;
    width: 270px;
    background-size: contain;
    height: 80px;
    background-repeat: no-repeat;
    background-image: url(./name_support.png);
}

#planet_name h4 {
	padding: 0;
	margin:0;
	color: #f6968c;
	font-size: 12px;

}

#base {
	position: absolute;
	bottom: -275px;
	z-index: 1;
}

#particles {
	position: absolute;
	bottom: -130px;
	z-index: 3;
}

#civilization {
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	transform: translate3d(0,0,0);
	transition: all 0.3s ease-in-out;
	overflow:hidden;
}

#civilization.inactive {
	transform: translate3d(100%,0,0);
}

#civ_bg {
		height: 100%;
		width: 100%;
    position: absolute;
		left:0;
		top:0;
		display: flex;
		justify-content: center;
		align-items: center;
}

#navigation {
	position: absolute;
	bottom:0px;
	right: 0px;
	z-index:9;
	opacity: 0.5;
	transition: opacity 0.2s linear;
	cursor: pointer;
	width: 24%;
	height: 24%;
}

#navigation img {
	width: auto;
	height: 100%;
	position: absolute;
	bottom: 0;
	right:0;
}

#navigation:hover {
	opacity: 1;
}

#background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index:-1;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
}

#round {
	width: 150%;
	height: 100%;
	position: absolute;
	left:50%;
	transform: translate3d(-50%, 50%,0)
}

#particles {
	width: 130%;
	/* height: 800px; */
	position: absolute;
	left:50%;
	transform: translate3d(-50%, 20%,0)
}

.civ_trait {
	position: absolute;
	bottom:0%;
	left:12%;
	height: 90%;
}

.civ_bg {
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 100%;
}

.pet_float {
	animation: pet_float 6s ease-in-out infinite;
}

@keyframes pet_float {
	0% {
		transform: translate3d(0,-15%,0);
	}
	50% {
		transform: translate3d(0,5%,0);
	}
	100% {
		transform: translate3d(0,-15%,0);
	}
}