body {
  font-family: 'Fira Code', monospace;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
}

h1, h2 {
  font-family: 'Press Start 2P', cursive;
}

.terminal-box {
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: 'Fira Code';
  color: #00ff00;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-down {
  animation: slide-down 1s ease-out;
}