/* styles.css */

body {
  margin: 0;
  background-color: #006622; /* Matching the green from your logo */
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 700px;
  padding: 20px;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

.tagline {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f9f9f9;
}

.coming-soon {
  font-size: 2rem;
  font-weight: bold;
  color: #ffff00; /* Yellow to match the logo */
}
