/* General styling for the page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  background-color: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
}

/* Center the container */
.container {
  text-align: center;
  padding: 30px;
}

/* Animation for the logo */
.animated-text {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeInUp 2s ease-out;
  display: inline-block;
}

/* Animation for the coming soon text */
.coming-soon-text {
  font-size: 1.5rem;
  margin-top: 20px;
  animation: fadeInUp 2s ease-out 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.contact-info {
  margin-top: 20px;
  font-size: 1rem;
  animation: fadeInUp 2s ease-out 2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.contact-info a {
  color: #00c7f0;
  text-decoration: none;
  font-weight: bold;
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
