/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500&family=IBM+Plex+Mono:wght@400&display=swap');*/

/* Regular Weight */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold Weight */
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/fonts/IBMPlexMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f7f3;
  --ink: #191914;
  --graphite: #56564e;
  --staff: #c9c9c0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.25rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
}
.rule {
  width: 6rem;
  border: none;
  border-top: 1px solid var(--staff);
}
p {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--graphite);
}
a {
  color: var(--graphite);
}
footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
}
footer p {
  font-size: 0.6875rem;
  line-height: 1.7;
}
