/* styles.css */
body {
  margin: 0;
  padding: 0;
  background: #121212;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  font-size: 4rem;
  background: linear-gradient(45deg, #4facfe, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.slogan {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-top: 1rem;
}

.coming-soon {
  font-size: 1.5rem;
  color: #4facfe;
  margin-top: 2rem;
  animation: pulse 10s infinite;
}

footer {
  font-size: 0.8rem;
  color: #666666;
}

/* Animation for 'Coming Soon...' */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
