@font-face {
  font-family: "Sans-Serif";
  src: url("src/fonts/Sans-Serif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #1c1c1b;
  --text: #f2f1ee;
}

* {
  box-sizing: border-box;
  margin: 0;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Sans-Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
}

.wordmark {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.mail-link {
  width: 20px;
  height: 20px;
  color: var(--text);
  opacity: 0.72;
  transition: opacity 0.18s ease;
}

.mail-link:hover,
.mail-link:focus-visible {
  opacity: 1;
}

.mail-link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
