.splash .chat-message {
  -webkit-animation-name: fade-in; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1.5s; /* Safari 4.0 - 8.0 */
  animation-name: fade-in;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.splash .chat-message:nth-child(2) {
  animation-delay: 1.5s;
}

.splash .chat-message:nth-child(3) {
  animation-delay: 3s;
}
.splash .chat-message:nth-child(4) {
  animation-delay: 4.5s;
}

@keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
    25%  {transform: scale(1.2);}
}
