/* The public website: a single notice that FitnessD is used through the app. No scripts. */

:root {
  --bg: #f4f4f2;
  --surface: #fcfcfb;
  --border: #e0dfdb;
  --text: #0b0b0b;
  --text-2: #52514e;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121211;
    --surface: #1a1a19;
    --border: #2f2f2d;
    --text: #ffffff;
    --text-2: #c3c2b7;
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

.card {
  width: 100%;
  max-width: 360px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  text-align: center;
}

.card__icon {
  display: block;
  margin: 0 auto 16px;
  border-radius: 16px;
}

h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
}

p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-2);
}
