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

body {
  background-color: #000000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

h1 {
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #b3b3b3;
  max-width: 640px;
  line-height: 1.6;
}
