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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: rgba(2, 3, 3, 1);
  color: white;
  opacity: 0.1;
  animation: bodyFadeIn 2s ease forwards;
  animation-delay: 0.2s; /* Delay so it starts after overlay begins */
}

@keyframes bodyFadeIn {
  to {
    opacity: 1;
  }
}


.fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  pointer-events: none;
  animation: fadeOut 1.8s ease forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}