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

/* Page */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111111;
  color: #dcdcdc;
  font-family: Segoe UI;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Content */
.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}
