body {
	margin: 0;
}
#body {
    overflow: hidden;
}
#background {
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: -1;
	
  /* Preserve aspet ratio */
  min-width: 100%;
  min-height: 100%;
}
#stars {
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: -1;
	
  /* Preserve aspet ratio */
  min-width: 100%;
  min-height: 100%;
}
.planet {
    position: absolute;
}
#astronaut {
    animation: kosmonauta 20s infinite;
    align: center;
    margin-top: 0%;
    margin-left: 44%;
}

#mercury {
    animation: bobble 4s infinite;
    margin-top: 27%;
    margin-left: 16%
}
#wenus {
    animation: bobble 2s infinite;
    margin-top: 26%;
	margin-left: 20%
}
#earth {
    animation: bobble 3s infinite;
    margin-top: 26%;
	margin-left: 26%
}
#mars {
    animation: bobble 5s infinite;
    margin-top: 26%;
	margin-left: 33%
}
#jupiter {
    animation: bobble 2s infinite;
    margin-top: 24%;
	margin-left: 41%
}
#saturn {
    animation: bobble 5s infinite;
    margin-top: 26%;
	margin-left: 52%
}
#uranus {
    animation: bobble 3s infinite;
    margin-top: 26%;
	margin-left: 63%
}
#neptune {
    animation: bobble 2s infinite;
    margin-top: 26%;
	margin-left: 69%
}
#pluto {
    animation: bobble 4s infinite;
    margin-top: 27%;
    margin-left: 75%
}
@keyframes kosmonauta {
    0% {
        transform: translate3d(50px, 40px, 0px);
        animation-timing-function: ease-in-out;
    }
	25% {
		width: 150px;
		animation-timing-function: ease-in-out;
		transform: rotate(10deg);
	}
    50% {
        transform: translate3d(100px, 50px, 0px);
        animation-timing-function: ease-in-out;
    }
	75% {
		transform: translate3d(25px, 0px, 0px);
		rotate(-10deg);
        animation-timing-function: ease-in-out;
		width: 80px;
	}
    100% {
        transform: translate3d(50px, 40px, 0px);
        animation-timing-function: ease-in-out;
    }
}
@keyframes bobble {
    0% {
        transform: translate3d(50px, 40px, 0px);
        animation-timing-function: ease-in;
    }
    50% {
        transform: translate3d(50px, 50px, 0px);
        animation-timing-function: ease-out;
    }
    100% {
        transform: translate3d(50px, 40px, 0px);
    }
}
@keyframes bobble {
    0% {
        transform: translate3d(50px, 40px, 0px);
        animation-timing-function: ease-in;
    }
    50% {
        transform: translate3d(50px, 50px, 0px);
        animation-timing-function: ease-out;
    }
    100% {
        transform: translate3d(50px, 40px, 0px);
    }
}
.error404 {
    color: #FFFFFF;
	font-size: 9vw;
	opacity: 0.7;
    display: block;
    float: center;
    position: absolute;
	z-index: 2;
    text-align: center;
	margin-top: 16%;
	width: 100%;
	font-family: 'Alfa Slab One', cursive;
}
.alone {
    color: #FFFFFF;
	font-size: 1.3vw;
    display: block;
    float: center;
    position: absolute;
    text-align: center;
	margin-top: 39%;
	width: 100%;
	text-align: center;
	font-family: 'Pacifico', cursive;
}
.button-home {

    background: #1c3a69; 
	border: none;
	border-radius: 10px;
    text-align: center;
	margin-top: 43%;
    margin-left: auto;
	margin-right: auto;
	display: block;
	padding: 10px;
	font-size: 0.8vw;
	color: white;
	width: 10%;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
        }
.button-home:hover, 
.button-home:active {
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
}