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

/* Layout Base */
html, body {
  height: 100%;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
}

/* Container centers content */
.container {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.logo-box {
  background: white;
  padding: 3rem;
  margin-bottom: 0.5rem; 
  animation: fadeIn 1.2s ease-out forwards;
}


/* Logo image */
.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* "Coming Soon" text */
.coming-soon {
  font-size: 1.5rem;
  color: #333;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1s forwards;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

.fade-in-delay {
  animation-delay: 1s;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 600px) {
  html, body {
    padding: 1rem;
    background-color: white;
  }

  .logo-box {
    box-shadow: 0 0 0 0;
  }

  .coming-soon {
    font-size: 1.25rem;
  }
}

a.email {
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    animation: fadeIn 2.0 ease-out 1s forwards;
}
























