#logo {
	width: 80px;
	left: 50%;
	margin-left: -40px;
	position: relative;
	margin-top: 60px;
	animation-fill-mode: both;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

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

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

#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 #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 #fire {
	opacity: .6;
	transform: scale(1) translate(0);
	transition: transform 400ms, opacity 600ms;
}

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