body {
	
	margin: 0;
	padding: 0;
	background-color: black;
	color: white;
	font-size: 36px;
	overflow: hidden;
	
}

p {p
	
	font-size: 36px;
	text-align: center;
}

.head {
	
	height: 100vh;
	height: 100vw;
	
}

img {
	
   position: absolute;
   top: 250px;
   left: 50%;
   width: 500px;
   height: 500px;
   margin-top: -250px; /* Half the height */
   margin-left: -250px; /* Half the width */
  background-repeat: repeat;
  animation: spin linear 10s infinite;
	
}

@keyframes spin {

100% {-webkit-transform: rotate(181deg);
	-o-transform: rotate(181deg);
	-ms-transform: rotate(181deg);
	-moz-transform: rotate(181deg);
	transform: rotate(359deg);}
	
}

.backdrop {
	
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	
}

.backdrop, .stars {
  overflow: hidden;
  position: fixed;
  top: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1
}

.stars {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: zoom 5s infinite;
  opacity: 0;
}

.stars:nth-child(1) {
  background-position: 50% 50%;
  animation-delay: 0s;
}
.stars:nth-child(2) {
  background-position: 20% 60%;
  animation-delay: 1s;
}
.stars:nth-child(3) {
  background-position: -20% -30%;
  animation-delay: 2s;
}
.stars:nth-child(4) {
  background-position: 40% -80%;
  animation-delay: 3s;
}
.stars:nth-child(5) {
  background-position: -20% 30%;
  animation-delay: 4s;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0.5);
    animation-timing-function: ease-in;
  } 
  85% {
    opacity: 1;
    transform: scale(2.8);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(3.5);
  }
}


.head h1 {

	margin: 0;
	position: absolute;
	left: 33vw;
	top: 10px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	overflow: hidden;
	border: none;
	font: normal 5vw "VT323", Helvetica, sans-serif;
	color: deepskyblue;
	text-align: center;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-shadow: 5px 5px 0 rgba(112,104,23,1) ;
	-webkit-transform: rotate( -4deg );
	-o-transform: rotate( -4deg );
	-ms-transform: rotate( -4deg );
	-moz-transform: rotate( -4deg );
	transform: rotate( -4deg );
	z-index: 200;
	
	animation-name: headColorCycle; 
	animation-duration:6s; 
	animation-direction:alternate; 
	animation-iteration-count:infinite; 

}

@keyframes headColorCycle 
{
0% {	margin: 0;
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	overflow: hidden;
	border: none;
	font: normal 5vw "VT323", Helvetica, sans-serif;
	color: deepskyblue;
	text-align: center;}



33% {	margin: 0;
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	overflow: hidden;
	border: none;
	font: normal 5vw "VT323", Helvetica, sans-serif;
	color: red;
	text-align: center;}


66% {	margin: 0;
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	overflow: hidden;
	border: none;
	font: normal 5vw "VT323", Helvetica, sans-serif;
	color: lime;
	text-align: center;}
} 

.head h2 {

	margin: 0;
	position: absolute;
	left: 36vw;
	top: 7vw;
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	overflow: hidden;
	border: none;
	font: normal 2.5vw "VT323", Helvetica, sans-serif;
	color: rgba(189,183,107,1);
	text-align: center;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-shadow: 3px 3px 0 rgba(112,104,23,1) ;
	transform: rotate( 3deg );
	z-index: 200;

}

nav {
	
	position: absolute;
	bottom: 0;
	left: 1vw;
	margin: 20px;
	float: right;
	z-index: 200;
	
}

nav p {
	
	font: normal 2.5vw "VT323", Helvetica, sans-serif;
	text-align: left;
	
}

nav a {
	
	margin-top: 50px;
	padding: 10px;
	text-decoration: none;
	color:inherit;
	color: deepskyblue;
	font: normal 2.5vw "VT323", Helvetica, sans-serif;
	white-space: nowrap;
	
}

nav a:visited {
	
	color: deepskyblue;
	
}

nav a:hover {
	
	padding: 10px;
	color: yellow;
	
}


/* Tunnel Effect */

@keyframes roundandround {
  to {
    transform: rotateX(360deg);
  }
}

.scene {
  width:600px;
  height:600px;
  margin: 0 auto;
  perspective:500px;
}
.wrapper {
  width:100%;
  height:100%;
  transform-style: preserve-3d;
  transform: rotateY(0deg) translateZ(300px);
}
.tunnel {
  position: relative;
  width: 200px;
  height: 200px;
  margin:0 auto;
  transform-style: preserve-3d;
  animation: roundandround 10s infinite linear;
}
.tunnel .ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:6px;
  border-style: dashed;
  border-radius: 50%;
  transform-origin: 50% 50%;
  color:#8df435;
  transform: translateY(-200px);
}
.ring:nth-child(1) {
  color:#8df435;
  transform: rotateX(5deg) translateY(-200px);
}
.ring:nth-child(2) {
  color:#8df435;
  transform: rotateX(10deg) translateY(-200px);
}
.ring:nth-child(3) {
  color:#a8e526;
  transform: rotateX(15deg) translateY(-200px);
}
.ring:nth-child(4) {
  color:#a8e526;
  transform: rotateX(20deg) translateY(-200px);
}
.ring:nth-child(5) {
  color:#c2d11c;
  transform: rotateX(25deg) translateY(-200px);
}
.ring:nth-child(6) {
  color:#c2d11c;
  transform: rotateX(30deg) translateY(-200px);
}
.ring:nth-child(7) {
  color:#c8cb1b;
  transform: rotateX(35deg) translateY(-200px);
}
.ring:nth-child(8) {
  color:#c8cb1b;
  transform: rotateX(40deg) translateY(-200px);
}
.ring:nth-child(9) {
  color:#deb21a;
  transform: rotateX(45deg) translateY(-200px);
}
.ring:nth-child(10) {
  color:#deb21a;
  transform: rotateX(50deg) translateY(-200px);
}
.ring:nth-child(11) {
  color:#ef9621;
  transform: rotateX(55deg) translateY(-200px);
}
.ring:nth-child(12) {
  color:#ef9621;
  transform: rotateX(60deg) translateY(-200px);
}
.ring:nth-child(13) {
  color:#f29122;
  transform: rotateX(65deg) translateY(-200px);
}
.ring:nth-child(14) {
  color:#f29122;
  transform: rotateX(70deg) translateY(-200px);
}
.ring:nth-child(15) {
  color:#fb7430;
  transform: rotateX(75deg) translateY(-200px);
}
.ring:nth-child(16) {
  color:#fb7430;
  transform: rotateX(80deg) translateY(-200px);
}
.ring:nth-child(17) {
  color:#fe5944;
  transform: rotateX(85deg) translateY(-200px);
}
.ring:nth-child(18) {
  color:#fe5944;
  transform: rotateX(90deg) translateY(-200px);
}
.ring:nth-child(19) {
  color:#fe5548;
  transform: rotateX(95deg) translateY(-200px);
}
.ring:nth-child(20) {
  color:#fe5548;
  transform: rotateX(100deg) translateY(-200px);
}
.ring:nth-child(21) {
  color:#f83d61;
  transform: rotateX(105deg) translateY(-200px);
}
.ring:nth-child(22) {
  color:#f83d61;
  transform: rotateX(110deg) translateY(-200px);
}
.ring:nth-child(23) {
  color:#ec2b7d;
  transform: rotateX(115deg) translateY(-200px);
}
.ring:nth-child(24) {
  color:#ec2b7d;
  transform: rotateX(120deg) translateY(-200px);
}
.ring:nth-child(25) {
  color:#e82983;
  transform: rotateX(125deg) translateY(-200px);
}
.ring:nth-child(26) {
  color:#e82983;
  transform: rotateX(130deg) translateY(-200px);
}
.ring:nth-child(27) {
  color:#d41e9f;
  transform: rotateX(135deg) translateY(-200px);
}
.ring:nth-child(28) {
  color:#d41e9f;
  transform: rotateX(140deg) translateY(-200px);
}
.ring:nth-child(29) {
  color:#bd1aba;
  transform: rotateX(145deg) translateY(-200px);
}
.ring:nth-child(30) {
  color:#bd1aba;
  transform: rotateX(150deg) translateY(-200px);
}
.ring:nth-child(31) {
  color:#b81ac0;
  transform: rotateX(155deg) translateY(-200px);
}
.ring:nth-child(32) {
  color:#b81ac0;
  transform: rotateX(160deg) translateY(-200px);
}
.ring:nth-child(33) {
  color:#9c1fd7;
  transform: rotateX(165deg) translateY(-200px);
}
.ring:nth-child(34) {
  color:#9c1fd7;
  transform: rotateX(170deg) translateY(-200px);
}
.ring:nth-child(35) {
  color:#802aea;
  transform: rotateX(175deg) translateY(-200px);
}
.ring:nth-child(36) {
  color:#802aea;
  transform: rotateX(180deg) translateY(-200px);
}
.ring:nth-child(37) {
  color:#7a2dee;
  transform: rotateX(185deg) translateY(-200px);
}
.ring:nth-child(38) {
  color:#7a2dee;
  transform: rotateX(190deg) translateY(-200px);
}
.ring:nth-child(39) {
  color:#5f40f9;
  transform: rotateX(195deg) translateY(-200px);
}
.ring:nth-child(40) {
  color:#5f40f9;
  transform: rotateX(200deg) translateY(-200px);
}
.ring:nth-child(41) {
  color:#4657fe;
  transform: rotateX(205deg) translateY(-200px);
}
.ring:nth-child(42) {
  color:#4657fe;
  transform: rotateX(210deg) translateY(-200px);
}
.ring:nth-child(43) {
  color:#425cfe;
  transform: rotateX(215deg) translateY(-200px);
}
.ring:nth-child(44) {
  color:#425cfe;
  transform: rotateX(220deg) translateY(-200px);
}
.ring:nth-child(45) {
  color:#2f77fb;
  transform: rotateX(225deg) translateY(-200px);
}
.ring:nth-child(46) {
  color:#2f77fb;
  transform: rotateX(230deg) translateY(-200px);
}
.ring:nth-child(47) {
  color:#425cfe;
  transform: rotateX(235deg) translateY(-200px);
}
.ring:nth-child(48) {
  color:#425cfe;
  transform: rotateX(240deg) translateY(-200px);
}
.ring:nth-child(49) {
  color:#4657fe;
  transform: rotateX(245deg) translateY(-200px);
}
.ring:nth-child(50) {
  color:#4657fe;
  transform: rotateX(250deg) translateY(-200px);
}
.ring:nth-child(51) {
  color:#5f40f9;
  transform: rotateX(255deg) translateY(-200px);
}
.ring:nth-child(52) {
  color:#5f40f9;
  transform: rotateX(260deg) translateY(-200px);
}
.ring:nth-child(53) {
  color:#802aea;
  transform: rotateX(265deg) translateY(-200px);
}
.ring:nth-child(54) {
  color:#802aea;
  transform: rotateX(270deg) translateY(-200px);
}
.ring:nth-child(55) {
  color:#802aea;
  transform: rotateX(275deg) translateY(-200px);
}
.ring:nth-child(56) {
  color:#9c1fd7;
  transform: rotateX(280deg) translateY(-200px);
}
.ring:nth-child(57) {
  color:#9c1fd7;
  transform: rotateX(285deg) translateY(-200px);
}
.ring:nth-child(58) {
  color:#9c1fd7;
  transform: rotateX(290deg) translateY(-200px);
}
.ring:nth-child(59) {
  color:#d41e9f;
  transform: rotateX(295deg) translateY(-200px);
}
.ring:nth-child(60) {
  color:#d41e9f;
  transform: rotateX(300deg) translateY(-200px);
}
.ring:nth-child(61) {
  color:#ec2b7d;
  transform: rotateX(305deg) translateY(-200px);
}
.ring:nth-child(62) {
  color:#ec2b7d;
  transform: rotateX(310deg) translateY(-200px);
}
.ring:nth-child(63) {
  color:#fe5548;
  transform: rotateX(315deg) translateY(-200px);
}
.ring:nth-child(64) {
  color:#fe5548;
  transform: rotateX(320deg) translateY(-200px);
}
.ring:nth-child(65) {
  color:#fb7430;
  transform: rotateX(325deg) translateY(-200px);
}
.ring:nth-child(66) {
  color:#fb7430;
  transform: rotateX(330deg) translateY(-200px);
}
.ring:nth-child(67) {
  color:#ef9621;
  transform: rotateX(335deg) translateY(-200px);
}
.ring:nth-child(68) {
  color:#ef9621;
  transform: rotateX(340deg) translateY(-200px);
}
.ring:nth-child(69) {
  color:#c8cb1b;
  transform: rotateX(345deg) translateY(-200px);
}
.ring:nth-child(70) {
  color:#a8e526;
  transform: rotateX(350deg) translateY(-200px);
}
.ring:nth-child(71) {
  color:#8df435;
  transform: rotateX(355deg) translateY(-200px);
}

/* rabbit animation */

.rabbit_animation {
	
	position: absolute;
	left: 40vw;
	top: 40vh;
	margin-left: -10vw;
	margin-top: -7.5vw;
	height: 20vw;
	width: 15vw;
	background-image: url("../img/rsprite_one.png");
	background-size: 20vw 15vw;
	background-repeat: no-repeat;
	image-rendering: pixelated;
	
	animation-name: rabbitswim; 
	animation-duration:8s;  
	animation-iteration-count:infinite;
	animation-timing-function: linear;
	
}

@keyframes rabbitswim {
	
	0% { background-image: url("../img/rsprite_one.png");  left: 40vw;}
		
	5% { background-image: url("../img/rsprite_two.png"); }
	
	10% { background-image: url("../img/rsprite_three.png"); }
	
	15% { background-image: url("../img/rsprite_four.png");  }
	
	20% { background-image: url("../img/rsprite_one.png"); }
		
	25% { background-image: url("../img/rsprite_two.png"); }
	
	30% { background-image: url("../img/rsprite_three.png"); }
	
	35% { background-image: url("../img/rsprite_four.png");  }
	
	40% { background-image: url("../img/rsprite_one.png"); }
		
	45% { background-image: url("../img/rsprite_two.png"); }
	
	50% { background-image: url("../img/rsprite_three.png"); }
	
	55% { background-image: url("../img/rsprite_four.png");  }

	60% { background-image: url("../img/rsprite_one.png"); }
		
	65% { background-image: url("../img/rsprite_two.png"); }
	
	70% { background-image: url("../img/rsprite_three.png"); }
	
	75% { background-image: url("../img/rsprite_four.png");  }
	
	80% { background-image: url("../img/rsprite_one.png"); }
		
	85% { background-image: url("../img/rsprite_two.png"); }
	
	90% { background-image: url("../img/rsprite_three.png"); }
	
	95% { background-image: url("../img/rsprite_four.png");  }

	100% { left: 60vw; }
	
}

/* Rabbit animation 2 */
/* rabbit animation */

.rabbit_animation2 {
	
	position: absolute;
	left: 50vw;
	top: 40vh;
	margin-left: -10vw;
	margin-top: -7.5vw;
	height: 20vw;
	width: 15vw;
	background-image: url("../img/rsprite_one.png");
	background-size: 20vw 15vw;
	background-repeat: no-repeat;
	image-rendering: pixelated;
	
	animation-name: rabbitswim2; 
	animation-duration:5.5s;  
	animation-iteration-count:infinite;
	animation-timing-function: linear;
	
}

@keyframes rabbitswim2 {
	
	0% { background-image: url("../img/rsprite_one.png"); }
		
	5% { background-image: url("../img/rsprite_two.png"); }
	
	10% { background-image: url("../img/rsprite_three.png"); }
	
	15% { background-image: url("../img/rsprite_four.png");  }
	
	20% { background-image: url("../img/rsprite_one.png"); }
		
	25% { background-image: url("../img/rsprite_two.png"); }
	
	30% { background-image: url("../img/rsprite_three.png"); }
	
	35% { background-image: url("../img/rsprite_four.png");  }
	
	40% { background-image: url("../img/rsprite_one.png"); }
		
	45% { background-image: url("../img/rsprite_two.png"); }
	
	50% { background-image: url("../img/rsprite_three.png"); }
	
	55% { background-image: url("../img/rsprite_four.png");  }

	60% { background-image: url("../img/rsprite_one.png"); }
		
	65% { background-image: url("../img/rsprite_two.png"); }
	
	70% { background-image: url("../img/rsprite_three.png"); }
	
	75% { background-image: url("../img/rsprite_four.png");  }
	
	80% { background-image: url("../img/rsprite_one.png"); }
		
	85% { background-image: url("../img/rsprite_two.png"); }
	
	90% { background-image: url("../img/rsprite_three.png"); }
	
	95% { background-image: url("../img/rsprite_four.png");  }

	100% { transform: scale( 0.0 ); }
	
}

/* Warp Gate Animation */

@mixin centerer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.wrap{
    display:flex;
    flex-direction:row;
    animation: warpspin 4s infinite linear;
    height: 100vh;
    
}

@keyframes warpspin {

100% { transform: rotate( 359deg ) }	
	
}

.center{
    @include centerer;
    border-radius:100%;
    filter:blur(2px);
    z-index:99999;
    width:8px;
    height:10vh;
    background:black;
}

.right{
    display:flex;
    align-items:stretch;
    height:100vh;
    width:50%;
    flex-direction:column;
    transform-origin:right;
    transform: perspective(80px) rotateY(110deg);
}
.left{
    display:flex;
    align-items:stretch;
    height:100vh;
    width:50%;
    flex-direction:column;
    transform-origin: left;
    transform: perspective(80px) rotateY(-110deg);
}

.split_right{
    transform: scaleX(-1);
    height:100vh;
    filter: FlipH;
    background-image: url('../img/wormhole.png');
    image-rendering: auto;
    background-size: cover;
    background-position: -8400px 0px;
    animation: trought_right 120s infinite linear;
}

.split_left{
    height:100vh;
    transform-origin:center left;
    background-image: url('../img/wormhole.png');
    image-rendering: pixelated;
    background-position: 8000px 0px;
    animation: trought_left 120s infinite linear;
}

@keyframes trought_right{
    100%{
        background-position: 1500px 0;
    }
}

@keyframes trought_left{
    0%{
        background-position:-1500px 0;
    }
}

/* Planetscape wrapper */

// VARIABLES ======

$orb-size: 300px;
$orb-size-2: 400px;
$border-radius-round: 50%;

$move-pos-top: -100px;
$move-pos-bottom: -50px;
$move-pos-easing: cubic-bezier(0.455, 0.030, 0.515, 0.955);

$orb__rotation-offset: -35deg;
$cloudgroup-tilt: -19deg;

// RESET ======

*, *:before, *:after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: none;
}

html {
	background-color: #111111;
}

	html, body {
		height: 100%;
	}

	canvas {
		display: block;
		width: 100%;
		height: 100%;
	}

// WRAPPERS ======



.wrapper {
	position: relative;
	height: 100%;
	width: 100%;
	background-color: #111;
	background: linear-gradient(
		to bottom, 
		rgba(8,8,8,1) 0%, 
		rgba(13,13,13,1) 70%, 
		rgba(40,30,30,1) 90%);
	overflow: hidden;
}

.wrapper__absolute--full {
	position: absolute;
	width: 100%;
	height: 100%;
}

// SPACE BACKGROUND ======

#particles-js {
	padding-bottom: 150px;
}

.space-nebula__wrapper {
	opacity: 0.08;
}

	@keyframes space-nebula-scroll-small {
		from {background-position: 0% 0%;}
		to {background-position: -1200px 0%;}
	}

	@keyframes space-nebula-scroll-med {
		from {background-position: 0% 0%;}
		to {background-position: -1600px 0%;}
	}

	@keyframes space-nebula-scroll-large {
		from {background-position: 0% 0%;}
		to {background-position: -2400px 0%;}
	}

	.space-nebula {
		position: absolute;
		width: 100%;
		height: 800px;
		top: 16%;
		background-size: 1600px 800px;
		background-position: 0% 0%;
	}

		.space-nebula-01 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/nebula_01.svg");
			background-size: 1200px 600px;
			height: 600px;
			top: 20%;
			opacity: 0.65;
			animation: space-nebula-scroll-small 40s linear infinite;
		}

		.space-nebula-02 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/nebula_02.svg");
			opacity: 0.8;
			animation: space-nebula-scroll-med 60s linear infinite;
		}

		.space-nebula-03 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/nebula_03.svg");
			background-size: 2400px 1200px;
			height: 1200px;
			opacity: 0.5;
			top: -4%;
			background-position: 0% 0%;
			animation: space-nebula-scroll-large 45s linear infinite;
		}


// BEACON ======

@keyframes beacon-flight-01 {
	0% {transform: translate(-20%, 55%);}
	50% {transform: translate(120%, 28%);}
	51% {transform: translate(120%, 55%);}
	100% {transform: translate(-20%, 65%);} 
}

@keyframes beacon-flight-02 {
	0% {transform: translate(-20%, 7%);}
	50% {transform: translate(120%, 32%);}
	51% {transform: translate(120%, 23%);}
	100% {transform: translate(-20%, 65%);}
}

@keyframes beacon-flight-03 {
	0% {transform: translate(-20%, 78%);}
	50% {transform: translate(120%, 32%);}
	51% {transform: translate(120%, 78%);}
	100% {transform: translate(-20%, 72%);}
}

.beacon-wrapper {
	top: 0;
	z-index: 4;
}

	.beacon-wrapper-01 {
		transform: translate(-20%, 55%);
		animation: beacon-flight-01 12s linear infinite;
	}	

	.beacon-wrapper-02 {
		transform: translate(-20%, 55%);
		animation: beacon-flight-02 12s 4s linear infinite;
	}	

	.beacon-wrapper-03 {
		transform: translate(-20%, 55%);
		animation: beacon-flight-03 12s 8s linear infinite;
	}	

	@keyframes beacon-flash {
		0% {opacity: 0.25}
		5% {opacity: 1}
		100% {opacity: 0.25}
	}

	.beacon {
		position: absolute;
		top: 0;
		width: 40px;
		height: 40px;
		border-radius: $border-radius-round;
		background: radial-gradient(
			ellipse at center,
			rgba(255,255,255,1) 0%,
			rgba(44,130,235,0.75) 15%, 
			rgba(44,130,235,0.25) 30%,
			rgba(44,130,235,0) 65%);
		opacity: 1;
		animation: beacon-flash 0.8s linear infinite;
	}

// LANDSCAPE ======

.landscape {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 150px;
}

	@keyframes landscape__bg-scroller {
		from {background-position: 0px bottom}
		to {background-position: 2400px bottom}
	}

	.landscape__bg {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 220px;	
		background-size: 2400px 220px;
		background-position: 0px bottom;
		background-repeat: repeat;
	}

		.landscape__bg--01 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/landscapes_fg_01.svg");
			animation: landscape__bg-scroller 40s linear infinite;
		}
		.landscape__bg--02 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/landscapes_fg_02.svg");
			animation: landscape__bg-scroller 60s linear infinite;
		}
		.landscape__bg--03 {
			background-image: url("http://www.iamglynnsmith.com/codepen/orb/landscapes_fg_03.svg");
			animation: landscape__bg-scroller 100s linear infinite;
		}

.landscape-clouds__wrapper {
	top: 0%;
	opacity: 0.05;
}

@keyframes landscape-clouds-scroller {
	from {background-position: 0px 0%;}
	to {background-position: -800px 0%;}
}

	.landscape-clouds {
		position: absolute;
		width: 100%;
		height: 400px;
		bottom: -2%;
		background-size: 800px 400px;
		background-position: 0% 0%;
	}

	.landscape-clouds-01 {
		background-image: url("http://www.iamglynnsmith.com/codepen/orb/landscape_clouds_01.svg");
		animation: landscape-clouds-scroller 80s linear infinite;
	}

	.landscape-clouds-02 {
		background-image: url("http://www.iamglynnsmith.com/codepen/orb/landscape_clouds_02.svg");
		opacity: 0.5;
		animation: landscape-clouds-scroller 26s linear infinite;
	}
	
	/*Space Animation*/
	
	* {
    margin: 0;
    padding: 0;
}
header {
    background-color:rgba(33, 33, 33, 0.9);
    color:#ffffff;
    display:block;
    font: 14px/1.3 Arial,sans-serif;
    height:50px;
    position:relative;
    z-index:5;
}
h2{
    margin-top: 30px;
    text-align: center;
}
header h2{
    font-size: 22px;
    margin: 0 auto;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}
header a, a:visited {
    text-decoration:none;
    color:#fcfcfc;
}

@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

@keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
    from {background-position: 0;}
    to {background-position:10000px 0;}
}

.stars2, .twinkling, .clouds {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  display:block;
}

.stars2 {
  background:#000 url(http://sylvaingarnot.fr/media/stars.png) repeat top center;
  z-index:0;
}

.twinkling{
  background:transparent url(http://sylvaingarnot.fr/media/twinkling.png) repeat top center;
  z-index:1;

  -moz-animation:move-twink-back 200s linear infinite;
  -ms-animation:move-twink-back 200s linear infinite;
  -o-animation:move-twink-back 200s linear infinite;
  -webkit-animation:move-twink-back 200s linear infinite;
  animation:move-twink-back 200s linear infinite;
}


.fishbowl {
	
	position: absolute;
	top: 35vh;
	left: 50vw;
	height: 10vw;
	width: 10vw;
	transform: translate( -5vw, -5vw );
	background-image: url('../img/fishbowl.png');
	background-repeat: no-repeat;
	background-size: cover;
	image-rendering: pixelated;
	z-index: 1;
	
	animation:fishbowlbob 2s linear infinite;
	
}
	
	
@keyframes fishbowlbob {
		
	0% { top:32vh; }
	50% { top: 34vh; }
	100% { top: 32vh; }

}

/* Mars Animation */

.mars {
  width: 100vw;
  height: 100vw;
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50vw, -50vw);
  image-rendering: auto;
  animation: mars 360s infinite linear;
}
@keyframes mars {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Solar system animation */


/* Solar System Styles */
ul.solarsystem {
    position: absolute;
    height: 100vh;
    width: 100vw;
    list-style: none;
    -webkit-transition: all 0.09s ease-in;
    -moz-transition: all 0.09s ease-in;
    -o-transition: all 0.09s ease-in;
    transition: all 0.09s ease-in;
    overflow: hidden;
}
ul.solarsystem li {
    text-indent: -9999px;
    display: block;
    position: absolute;
    border: 2px solid #394057;
/*    opacity: 0.7;*/
}
ul.solarsystem li span {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
ul.solarsystem li.active {
    border-color: #aa4200;
}
ul.solarsystem li.active.sun,
ul.solarsystem li.active span {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
ul.solarsystem li.active.sun span,
ul.solarsystem li.active.earth .moon {
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
ul.solarsystem li.sun {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #fc3;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.22, rgb(204,153,0)),
        color-stop(1, rgb(255,219,112))
    );
    background-image: -moz-linear-gradient(
        center bottom,
        rgb(204,153,0) 22%,
        rgb(255,219,112) 100%
    );
    top: 302px;
    left: 462px;
    border: none;
    -webkit-box-shadow: 0 0 50px #c90;
    -moz-box-shadow: 0 0 50px #c90;
    box-shadow: 0 0 50px #c90;
    z-index: 100;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
ul.solarsystem li.sun span {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;   
}
ul.solarsystem li.mercury {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    border-radius: 52px;
    top: 270px;
    left: 430px;
    z-index: 99;
}
ul.solarsystem li.mercury span {
    background: #b6bac5;
    top: 10px;
    left: 10px;
}
ul.solarsystem li.venus {
    width: 160px;
    height: 160px;
    -webkit-border-radius: 82px;
    -moz-border-radius: 82px;
    border-radius: 82px;
    top: 240px;
    left: 400px;
    z-index: 98;
}
ul.solarsystem li.venus span {
    background: #bf8639;
    top: 118px;
    left: 5px;
}
ul.solarsystem li.earth {
    width: 220px;
    height: 220px;
    -webkit-border-radius: 112px;
    -moz-border-radius: 112px;
    border-radius: 112px;
    top: 210px;
    left: 370px;
    z-index: 97;
}
ul.solarsystem li.earth span {
    background: #06c;
    top: 56px;
    left: 5px;
}
ul.solarsystem li.earth span.moon {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #ccc;
    top: 12px;
    left: 12px;
}
ul.solarsystem li.mars {
    width: 280px;
    height: 280px;
    -webkit-border-radius: 142px;
    -moz-border-radius: 142px;
    border-radius: 142px;
    top: 180px;
    left: 340px;
    z-index: 96;
}
ul.solarsystem li.mars span {
    background: #aa4200;
    top: 0px;
    left: 175px;
}
ul.solarsystem li.asteroids_meteorids {
    top: 155px;
    left: 315px;
    z-index: 1;
    background: url(http://neography.com/experiment/circles/solarsystem/asteroids_meteorids.png) no-repeat 0 0;
    width: 330px;
    height: 330px;
    -webkit-border-radius: 165px;
    -moz-border-radius: 165px;
    border-radius: 165px;
    border: none;
}
ul.solarsystem li.jupiter {
    width: 340px;
    height: 340px;
    -webkit-border-radius: 172px;
    -moz-border-radius: 172px;
    border-radius: 172px;
    top: 150px;
    left: 310px;
    z-index: 95;
}
ul.solarsystem li.jupiter span {
    background: #e0ae6f;
    top: 67px;
    left: 24px;
}
ul.solarsystem li.saturn {
    width: 400px;
    height: 400px;
    -webkit-border-radius: 202px;
    -moz-border-radius: 202px;
    border-radius: 202px;
    top: 120px;
    left: 280px;
    z-index: 94;
}
ul.solarsystem li.saturn span {
    background: #dfd3a9;
    top: 24px;
    left: 300px;
}
ul.solarsystem li.saturn span.ring {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: none;
    border: 2px solid #5a4e34;
    left: -3px;
    top: -3px;
    -webkit-transform: skewY(50deg);
    -moz-transform: skewY(50deg);
    -o-transform: skewY(50deg);
    transform: skewY(50deg);
}
ul.solarsystem li.uranus {
    width: 460px;
    height: 460px;
    -webkit-border-radius: 232px;
    -moz-border-radius: 232px;
    border-radius: 232px;
    top: 90px;
    left: 250px;
    z-index: 93;
}
ul.solarsystem li.uranus span {
    background: #82b3d1;
    top: 7px;
    left: 300px;
}
ul.solarsystem li.neptune {
    width: 520px;
    height: 520px;
    -webkit-border-radius: 262px;
    -moz-border-radius: 262px;
    border-radius: 262px;
    top: 60px;
    left: 220px;
    z-index: 92;
}
ul.solarsystem li.neptune span {
    background: #77c2ec;
    top: 0px;
    left: 200px;
}
ul.solarsystem li.pluto {
    width: 580px;
    height: 580px;
    -webkit-border-radius: 292px;
    -moz-border-radius: 292px;
    border-radius: 292px;
    top: 30px;
    left: 190px;
    z-index: 91;
}
ul.solarsystem li.pluto span {
    background: #7c6a5c;
    top: 79px;
    left: 79px;
}

ul#descriptions {
    position: absolute;
    top: 150px;
    right: 100px;
    list-style: none;
}
ul#descriptions h2 {
    cursor: pointer;
    color: #386077;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    font-size: 20px;
    position: relative;
    z-index: 101;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
	margin-bottom: -15px;
}
ul#descriptions h2:hover {
   color: #aa4200; 
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}
ul#descriptions li p {
    position: absolute;
    left: -250px;
    top: 0;
    width: 200px;
    display: inline;
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background: #0f132c;
    padding: 30px;
    color: #767892;
    line-height: 1.7;
    z-index: 100;
    border: 1px solid #1c203c;
}
ul#descriptions h2:hover+p {
    visibility: visible;
    opacity: 0.9;
    left: -280px;
}

/* CSS3 Animations */
ul.solarsystem li {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:orbit;
    
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:linear;
    -moz-animation-name:orbit;
}
ul.solarsystem li.earth span {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:moon;
    
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:linear;
    -moz-animation-name:moon;
}
ul.solarsystem li.mercury {-webkit-animation-duration:5s; -moz-animation-duration:5s;}
ul.solarsystem li.venus {-webkit-animation-duration:8s; -moz-animation-duration:8s;}
ul.solarsystem li.earth {-webkit-animation-duration:12s; -moz-animation-duration:12s;}
ul.solarsystem li.earth span {-webkit-animation-duration:2s; -moz-animation-duration:2s;}
ul.solarsystem li.mars {-webkit-animation-duration:20s; -moz-animation-duration:20s;}
ul.solarsystem li.asteroids_meteorids {-webkit-animation-duration:50s; -moz-animation-duration:50s;}
ul.solarsystem li.jupiter {-webkit-animation-duration:30s; -moz-animation-duration:30s;}
ul.solarsystem li.saturn {-webkit-animation-duration:60s; -moz-animation-duration:60s;}
ul.solarsystem li.uranus {-webkit-animation-duration:70s; -moz-animation-duration:70s;}
ul.solarsystem li.neptune {-webkit-animation-duration:100s; -moz-animation-duration:100s;}
ul.solarsystem li.pluto {-webkit-animation-duration:120s; -moz-animation-duration:120s;}

@-webkit-keyframes orbit { from { -webkit-transform:rotate(0deg) } to { -webkit-transform:rotate(360deg) } }
@-webkit-keyframes moon { from { -webkit-transform:rotate(0deg) } to { -webkit-transform:rotate(360deg) } }

@-moz-keyframes orbit { from { -moz-transform:rotate(0deg) } to { -moz-transform:rotate(360deg) } }
@-moz-keyframes moon { from { -moz-transform:rotate(0deg) } to { -moz-transform:rotate(360deg) } }

/*ul.solarsystem:hover li {-webkit-animation-play-state: paused;} */
