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

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.125rem; /* 18px */
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
  color: #a0a0a0;
  font-style: italic;
}
