/* Custom animations for Dead Alive */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
