/* styles.css */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #f4f4f4, #e8ecef);
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
}

.logo {
  width: 100px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 2rem;
}

.coming-soon {
  font-size: 1rem;
  color: #888;
  font-style: italic;
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  .tagline {
    font-size: 1rem;
  }
}
