body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #000000, #1a1a1a);
  font-family: 'Arial', sans-serif;
}

.welcome-container {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in;
}

.welcome-text {
  color: #ffffff;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}