*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: #0c0c0e;
  color: #e8e6e3;
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

#dots {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  pointer-events: none;
}

.title {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #f2f0ec;
}

.tagline {
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(232, 230, 227, 0.45);
}
