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

/* Body */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ecff16, #000000, #63642c);
  color: rgb(32, 181, 255);
  text-align: center;
}

/* Main Container */
.coming-soon-container {
  max-width: 600px;
  padding: 40px;
}

/* Logo */
.logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Headline */
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Subtitle */
.subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* Divider */
.divider {
  width: 100%;
  height: 20px;
  background: #00d4ff;
  margin: 30px auto;
  border-radius: 10px;
}





/* Footer */
footer {
  margin-top: 40px;
  font-size: 200%;
 
}