#footer {
	background: #444444;
	border-top: 4px solid #444444;
	font-size: 0.9em;
	margin-top: 50px;
	padding: 0;
	position: relative;
	clear: both;
}

#footer .footer-copyright {
	background: #333333;
}


/* Word animation */
.js-animate-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  will-change: transform, opacity;
}

.js-animate-words.is-animating .word {
  animation: wordFadeUp 600ms ease forwards;
}

@keyframes wordFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}