<h1>
  <span></span>
  <span></span>
  <span></span>
</h1>
@import url('https://webfontworld.github.io/utoNewyorkers/UtoNewYorKers.css');

html, body {
  width: 100%;
  height: 100%;
 
  background: #606c88;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #3f4c6b, #606c88);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3f4c6b, #606c88); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  height: 100px;
}

h1 span {
  font-family: 'UtoNewYorKers';
  font-size: 80px;
  color: #fff;
  position: relative;
  top: 20px;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 1px 0 #ccc,
    0 2px 0 #ccc,
    0 3px 0 #ccc,
    0 4px 0 #ccc,
    0 5px 0 #ccc,
    0 6px 0 transparent,
    0 7px 0 transparent,
    0 8px 0 transparent,
    0 9px 0 transparent,
    0 10px 10px rgba(0, 0, 0, 0.4);
  animation : bounce 0.3s ease infinite alternate;
}

@keyframes bounce {
  100% {
    top: -20px;
    text-shadow: 
      0 1px 0 #ccc,
      0 2px 0 #ccc,
      0 3px 0 #ccc,
      0 4px 0 #ccc,
      0 5px 0 #ccc,
      0 6px 0 transparent,
      0 7px 0 transparent,
      0 8px 0 transparent,
      0 9px 0 transparent,
      0 50px 15px rgba(0, 0, 0, 0.6);
  animation : bounce 0.3s ease infinite alternate;
  }
}

h1 span:nth-child(2) {animation-delay: 0.1s;}
h1 span:nth-child(3) {animation-delay: 0.2s;}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.