html {
	background-image: url("../img/paper.png");
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	position: relative;
}

html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

#logo {
	user-select: none;
	-webkit-user-select: none;
	animation-fill-mode: both;
}

@keyframes reactor {
	50% {
		transform: scale(.95) translate(4%, -1%);
	}

	0%, 100% {
		transform: scale(1) translate(0, 0);
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

#fish {
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
	position: relative;
	width: 100%;
	left: 0;
	opacity: .8;
	transition: opacity 300ms, margin-left 400ms;
}

#logo.active #fish {
	margin-left: 12px;
	opacity: 1;
	animation-duration: 1800ms;
  	animation-name: reactor;
  	animation-iteration-count: infinite;
  	animation-timing-function: ease-in-out;
  	animation-fill-mode: both;
}

#logo #rocket-fire {
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
	position: absolute;
	width: 200%;
	left: -75%;
	top: -26%;
	opacity: 0;
	transform: scale(.6) translate(8%, 0);
	transition: transform 600ms, opacity 400ms;
	animation-fill-mode: both;
}

#logo.active #rocket-fire {
	opacity: .6;
	transform: scale(1) translate(0);
	transition: transform 400ms, opacity 600ms;
}

#logo.active {
	animation-duration: 3000ms;
  	animation-name: reactor;
  	animation-iteration-count: infinite;
  	animation-timing-function: ease-in-out;
  	animation-fill-mode: both;
}

.load {
	animation-duration: 2500ms;
  	animation-name: rotate;
  	animation-iteration-count: infinite;
  	animation-timing-function: linear;
  	animation-fill-mode: both;
  	opacity: .6;
}