body {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, sans-serif;
	padding: 0;
	margin: 0;
}

@-webkit-keyframes spin {
    0%   {-webkit-transform: rotate(0deg)}
    25%  {-webkit-transform: rotate(10deg)}
    50% {-webkit-transform: rotate(0deg)}
    75%   {-webkit-transform: rotate(-10deg)}
    100%   {-webkit-transform: rotate(0deg)}
}

audio {
	display:none;
}

.motm {
    width:500px;
    height:500px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-250px 0 0 -250px;
    padding:0;
    -webkit-animation: spin 10s infinite linear;
    opacity:.8;
    box-shadow: 0px 30px 40px rgba(0,0,0,.1);
}
.motm img {
	width:500px;
	height:500px;
	margin:0;
	padding:0;
}

#galaxy {
	z-index: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #03092b;
	-webkit-transition: background 0.8s ease-out;
	-moz-transition: background 0.8s ease-out;
	-o-transition: background 0.8s ease-out;
	-ms-transition: background 0.8s ease-out;
	transition: background 0.8s ease-out;
}
#galaxy,
#galaxy .bg {
	width: 100%;
	height: 100%;
}
#galaxy * {
	position: absolute;
}
#galaxy .bg {
	background: url('img/bg.jpg') no-repeat 50% 50%;
}
#galaxy .bg.center {
	top: 50%;
	left: 50%;
	width: 400px;
	height: 200px;
	margin: -100px 0 0 -200px;
	opacity: 0.8;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	border-radius: 500px;
}
#galaxy [class^="stars"] {
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
}
#galaxy .stars-back {
	background: url('img/back.png');
	-webkit-animation: orbit-clock-wise 440s infinite linear;
	-moz-animation: orbit-clock-wise 440s infinite linear;
	-o-animation: orbit-clock-wise 440s infinite linear;
	-ms-animation: orbit-clock-wise 440s infinite linear;
	animation: orbit-clock-wise 440s infinite linear;
}
#galaxy .stars-middle {
	background: url('img/middle.png');
	-webkit-animation: orbit-counter-clock-wise 360s infinite linear;
	-moz-animation: orbit-counter-clock-wise 360s infinite linear;
	-o-animation: orbit-counter-clock-wise 360s infinite linear;
	-ms-animation: orbit-counter-clock-wise 360s infinite linear;
	animation: orbit-counter-clock-wise 360s infinite linear;
}
#galaxy .stars-front {
	background: url('img/front.png');
	-webkit-animation: orbit-clock-wise 160s infinite linear;
	-moz-animation: orbit-clock-wise 160s infinite linear;
	-o-animation: orbit-clock-wise 160s infinite linear;
	-ms-animation: orbit-clock-wise 160s infinite linear;
	animation: orbit-clock-wise 160s infinite linear;
}
@-webkit-keyframes orbit-clock-wise {
	0% { opacity: 0.4; -webkit-transform: rotate(0deg); }
	2% { opacity: 0.8; }
	4% { opacity: 0.2; }
	5% { opacity: 0.8; }
	100% { opacity: 0.4; -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes orbit-counter-clock-wise {
	from { -webkit-transform: rotate(360deg); } to { -webkit-transform: rotate(0deg); }
}
@-moz-keyframes orbit-clock-wise {
	0% { opacity: 0.4; -moz-transform: rotate(0deg); }
	2% { opacity: 0.8; }
	4% { opacity: 0.2; }
	5% { opacity: 0.8; }
	100% { opacity: 0.4; -moz-transform: rotate(360deg); }
}
@-moz-keyframes orbit-counter-clock-wise {
	from { -moz-transform: rotate(360deg); } to { -moz-transform: rotate(0deg); }
}
@-o-keyframes orbit-clock-wise {
	0% { opacity: 0.4; -o-transform: rotate(0deg); }
	2% { opacity: 0.8; }
	4% { opacity: 0.2; }
	5% { opacity: 0.8; }
	100% { opacity: 0.4; -o-transform: rotate(360deg); }
}
@-o-keyframes orbit-counter-clock-wise {
	from { -o-transform: rotate(360deg); } to { -o-transform: rotate(0deg); }
}
@-ms-keyframes orbit-clock-wise {
	0% { opacity: 0.4; -ms-transform: rotate(0deg); }
	2% { opacity: 0.8; }
	4% { opacity: 0.2; }
	5% { opacity: 0.8; }
	100% { opacity: 0.4; -ms-transform: rotate(360deg); }
}
@-ms-keyframes orbit-counter-clock-wise {
	from { -ms-transform: rotate(360deg); } to { -ms-transform: rotate(0deg); }
}
@keyframes orbit-clock-wise {
	0% { opacity: 0.4; transform: rotate(0deg); }
	2% { opacity: 0.8; }
	4% { opacity: 0.2; }
	5% { opacity: 0.8; }
	100% { opacity: 0.4; transform: rotate(360deg); }
}
@keyframes orbit-counter-clock-wise {
	from { transform: rotate(360deg); } to { transform: rotate(0deg); }
}
