/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #fdf6e3, #e0f7fa);
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container styling */
.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Logo and heading */
.logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #00796b;
}

.tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Message */
.message p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}
