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

body {
  height: 100vh;
  background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: #cfcfcf;
  letter-spacing: 0.1em;
}

p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #9a9a9a;
  letter-spacing: 0.15em;
}

