.content {
	width: 100%;
	height: 100vh;
	position: absolute;
}

.content--intro {
	z-index: 100;
	height: 200vh;
}

.content__inner {
	width: 100%;
	height: 100vh;
	position: relative;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content--intro .content__inner {
	background: #639950;
}

.shape-wrap {
	position: relative;
	z-index: 10;
	margin: -5px 0 0 0; /* Hide the gap */
}

.shape {
	height: 100vh;
	width: 100%;
	display: block;
}

@keyframes blurIn {
	0% {
	  transform: translate3d(0, -60px, 0) scale(0.9, 2);
	  filter: blur(3px);
	  opacity: 0; }
	100% {
	  transform: translate3d(0, 0, 0) scale(1);
	  filter: blur(0);
	  opacity: 1; } }
  
  @keyframes blurOut {
	0% {
	  transform: translate3d(0, 0, 0) scale(1);
	  filter: blur(0);
	  opacity: 1; }
	100% {
	  transform: translate3d(0, 60px, 0) scale(0.9, 2);
	  filter: blur(3px);
	  opacity: 0; } }
  
  @keyframes pulseEllipsis {
	0% {
	  box-shadow: -3px 0 0 rgba(255, 255, 255, 0.6), -9px 0 0 rgba(255, 255, 255, 0.6), -15px 0 0 rgba(255, 255, 255, 0.6); }
	20% {
	  box-shadow: -3px 0 rgba(255, 255, 255, 0.6), -9px 0 0 rgba(255, 255, 255, 0.6), -15px 0 0 #ffffff; }
	40% {
	  box-shadow: -3px 0 0 rgba(255, 255, 255, 0.6), -9px 0 0 #ffffff, -15px 0 0 rgba(255, 255, 255, 0.6); }
	60% {
	  box-shadow: -3px 0 0 #ffffff, -9px 0 0 rgba(255, 255, 255, 0.6), -15px 0 0 rgba(255, 255, 255, 0.6); } }
  
  @keyframes fadeInOutLong {
	0%, 35% {
	  opacity: 0; }
	40%, 85% {
	  opacity: 1; }
	90%, 100% {
	  opacity: 0; } }
  
  #loader {
	background: transparent;
	width: 400px;
	position: fixed;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate3d(-50%, -50%, 0); }
	#loader .emoji, #loader .text {
	  animation-name: blurIn;
	  animation-duration: 0.3s;
	  animation-timing-function: cubic-bezier(0.58, -0.23, 0.3, 1.3);
	  animation-fill-mode: both; }
	#loader .emoji {
	  display: block;
	  font-size: 3.5em;
	  margin-bottom: 0.2em;
	  animation-delay: 0.1s; }
	#loader .text {
	  line-height: 1;
	  color: white;
	  font-size: 20px;
	  margin-right: -14px; }
	  #loader .text:after {
		content: '';
		display: inline-block;
		background: transparent;
		width: 3px;
		height: 3px;
		border-radius: 50%;
		margin-left: 18px;
		box-shadow: -3px 0 0 rgba(255, 255, 255, 0.6), -9px 0 0 rgba(255, 255, 255, 0.6), -15px 0 0 rgba(255, 255, 255, 0.6);
		animation: pulseEllipsis 0.8s infinite both ease-in-out; }
	#loader .animateOut {
	  animation-name: blurOut;
	  animation-duration: 0.3s;
	  animation-timing-function: cubic-bezier(0.58, -0.23, 0.3, 1.3);
	  animation-fill-mode: both; }