@font-face {
  font-family: "ComitatoSans";
  src: url("/assets/fonts/site-font.woff2") format("woff2");
  font-display: swap;
}

:root {
  --text: #111111;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "ComitatoSans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  text-align: center;
}

.logo {
  width: min(300px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.email {
  display: inline-block;
  margin-top: 10px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.email:hover,
.email:focus-visible {
  border-bottom-color: currentColor;
  outline: none;
}
