@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.overlay {
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 280px;
  max-width: 80%;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.6));
}

h1 {
  font-size: 2.8rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  animation: slideIn 1s ease-out;
}

p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ddd;
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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