:root {
  --bg: #0b0b0b;
  --text: #f3f3f3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

main {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact {
  margin: 0.75rem 0 0;
  color: #bdbdbd;
}

footer {
  position: fixed;
  bottom: 1.25rem;
  width: 100%;
  text-align: center;
  color: #9a9a9a;
  font-size: 0.9rem;
}
