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

body {
  font-family: 'Arial', sans-serif;
  background-color: #87d892;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 800px;
  margin: 20px;
}

.logo img {
  width: 300px;
  margin-bottom: 20px;
}

.coming-soon h1 {
  font-size: 3rem;
  color: #2d3436;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #636e72;
  margin-bottom: 15px;
}

.cta-button {
  background-color: #00b894;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00a084;
}

.pad {
  padding-top: 20px;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #636e72;
}
