<!-- 
http://www.williammalone.com/articles/create-html5-canvas-javascript-sprite-animation/ 
https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API/Tutorial/Basic_animations 
-->

html,body { background: #FFFFFF; height: 100%; overflow: hidden; position: 
  relative;
}
#can {
  height: 100%; min-height: 2000px; position: absolute; width: 100%;
}
#title {
  color: #FFFFFF; font-family: 'Nunito', sans-serif; font-size: 10rem; 
  font-weight: 100; height: 180px; line-height: 180px; margin: auto; 
  pointer-events: none; position: absolute; text-align: center; text-shadow: 
  none; -webkit-transition: text-shadow 10s 3s;
          transition: text-shadow 10s 3s; top: 0; bottom: 0; 
  -webkit-user-select: none;
     -moz-user-select: none; -ms-user-select: none; user-select: none; width: 
  100%; z-index: 2;
}
#title.anim {
  text-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

