/* Reset default margins */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000; /* Black metal aesthetic */
}

/* Centering container */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Logo styling with fade-in animation */
.logo {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  opacity: 0;
  animation: fadeIn 2.5s ease-in-out forwards;
}

/* Keyframes for fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
