/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
}

/* Full-page gradient background container */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Example gradient (feel free to customize the colors) */
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

/* Center the text content */
.content {
  text-align: center;
  padding: 0 20px;
}

/* Main Heading */
.content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Brief Message */
.content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
