/*
 * The page that the server shows until the application lands. iqp.css gives
 * the components. This file gives only the layout of this one page.
 */

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.hold {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
  padding-block: var(--space-8) var(--space-7);
}

.hold__title {
  max-width: 17ch;
}


.hold__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-top: var(--hairline) solid var(--rule);
}

.hold__record {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-2);
}
