/* Fare LLC — splash page
   Minimal, static, no framework. Kept small on purpose. */

:root {
  --bg: #f7f4ec;
  --contact: #9a9488;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 64px;
}

.definition {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 28px;
  margin: 0;
  text-align: center;
}

.contact a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  color: var(--contact);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.contact a:hover,
.contact a:focus-visible {
  color: #7a7468;
}
