* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, aqua, #00b489);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.onboarding-container {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo img {
  width: 80px;
  margin-bottom: 10px;
  border-radius: 50%;
}

.content h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.illustration img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

#get-started-btn
{
    padding: 12px 40px 12px 40px;
    font-size: small;
    text-decoration: none;
    border-radius: 20px;
}

button {
  width: 100%;
  background: #4facfe;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #3b8be0;
}
