CSS Humor

Animate from Vertical Align Bottom to Vertical Align Top

.Animate {
  from {
    vertical-align: bottom;
  }

  to {
    vertical-align: top;
  }
}

#Dick {
  cursor: hand;
  position: relative;
  animation: Animate 60s;
}

From @Vasekdvor