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

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

.container {
  text-align: center;
  background: white;
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h1 span {
  color: #0077cc;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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