:root {
  color-scheme: dark;
  --background: #1c180f;
  --logo: #c3b996;
  --text: #eee7d0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  color: var(--text);
  background: var(--background);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(28px, 5vw, 48px);
  padding: 32px 20px;
  text-align: center;
}

.logo {
  width: min(62vw, 340px);
  height: auto;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.manager-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(195, 185, 150, 0.55);
  color: var(--text);
  text-decoration: none;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: 0.9rem;
  font-weight: 650;
  background: rgba(195, 185, 150, 0.08);
}

.manager-link:hover,
.manager-link:focus-visible {
  background: rgba(195, 185, 150, 0.16);
  outline: none;
}

@media (max-width: 520px) {
  .logo {
    width: min(72vw, 300px);
  }
}
