#ghost-messages {
  max-width: 100%;
  min-height: 100px;
  overflow: hidden;
  padding: 0;
}
#ghost-messages li {
  color: transparent;
  display: none;
  font-size: 100px;
  left: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  text-align: center;
  text-shadow: 0 0 1000px #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#ghost-messages li:nth-child(1) {
  display: block;
}
#ghost-messages li.fade-in {
  font-size: 100px;
  text-shadow: 0 0 0 #fff;
}
#ghost-messages li.fade-in span {
  transform: scale(1);
}
#ghost-messages li.fade-out {
  font-size: 100px;
  text-shadow: 0 0 10px #fff;
  opacity: 0;
}
#ghost-messages li.fade-out span {
  transform: scale(1.1);
}
#ghost-messages li span {
  transform: scale(1.1);
}
#ghost-messages.speed-absurdly-slow li {
  transition-duration: 24000ms;
}
#ghost-messages.speed-absurdly-slow li.fade-out {
  transition-duration: 8000ms;
}
#ghost-messages.speed-very-slow li {
  transition-duration: 12000ms;
}
#ghost-messages.speed-very-slow li.fade-out {
  transition-duration: 4000ms;
}
#ghost-messages.speed-slow li {
  transition-duration: 6000ms;
}
#ghost-messages.speed-slow li.fade-out {
  transition-duration: 2000ms;
}
#ghost-messages.speed-normal li {
  transition-duration: 3000ms;
}
#ghost-messages.speed-normal li.fade-out {
  transition-duration: 1000ms;
}
#ghost-messages.speed-fast li {
  transition-duration: 1500ms;
}
#ghost-messages.speed-fast li.fade-out {
  transition-duration: 500ms;
}
#ghost-messages.speed-very-fast li {
  transition-duration: 750ms;
}
#ghost-messages.speed-very-fast li.fade-out {
  transition-duration: 250ms;
}
#ghost-messages.speed-hyperspeed li {
  transition-duration: 375ms;
}
#ghost-messages.speed-hyperspeed li.fade-out {
  transition-duration: 125ms;
}
