/* General Body Styling */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  color: white;
}

/* Container to hold the logo and text, using flexbox for vertical alignment */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Increased the Logo Size */
.logo {
  max-width: 100%;
  width: 600px;  /* Increased from 200px to 600px */
  height: auto;
  animation: shine 3s infinite;
}

/* Responsive adjustments for logo size */
@media (min-width: 768px) {
  .logo {
    width: 800px; /* Increased from 300px to 800px */
  }
}

/* Made the Coming Soon Text Smaller */
.coming-soon {
  font-size: 1.5em;  /* Decreased from 2.5em to 1.5em */
  margin-top: 20px;
  animation: wave 2s infinite;
  background: linear-gradient(90deg, rgb(27, 24, 18), rgb(92, 8, 8));
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* Responsive adjustments for smaller text */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 1.2em; /* Decreased for smaller screens */
  }
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 1em;  /* Further reduced for mobile */
  }
}

/* Keyframes for Shine Effect on the Logo */
@keyframes shine {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(2);
  }
  100% {
    filter: brightness(1);
  }
}

/* Keyframes for Wavy Text Effect */
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
