:root {
  --background: #050505;
  --ink: #e5e5e5;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--ink);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

h1 {
  z-index: 1;
  position: absolute;
  top: 64px;
  left: 64px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  animation: rise-in 1100ms both cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}