:root {
  color-scheme: dark;
  --text: #f4f2ea;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #07090a url("/assets/garage-door.png") center / cover no-repeat fixed;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.2), rgba(4, 6, 8, 0.56)),
    radial-gradient(circle at 50% 58%, transparent 0, rgba(0, 0, 0, 0.34) 62%);
  content: "";
}

.landing {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.55);
}
