:root {
  --primary-color: #2e7d32;
  --secondary-color: #81c784;
  --bg-color: #f0f4f3;
  --text-color: #1b1b1b;
}

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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.message {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.bike-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

footer {
  font-size: 0.9rem;
  color: #888;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  .message {
    font-size: 1.2rem;
  }

  .logo {
    font-size: 2rem;
  }
}
