/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fff; /* Primary color */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Container Styling */
.container {
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

/* Logo Styling */
.logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

/* Heading Styling */
.coming-soon {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #e40102; /* Secondary color */
  animation: pulse 2s infinite;
}

/* Message Styling */
.message {
  font-size: 1.2rem;
  color: #0b0146;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 2rem;
  }
  .message {
    font-size: 1rem;
  }
  .logo img {
    max-width: 100px;
  }
}