/* papydoctor.eu — une phrase, rien d'autre.
   La page dit qu'elle ne bouge pas : elle ne bouge donc pas. Aucune animation,
   aucune transition, aucun JavaScript. */

:root {
  --papier: #f6f1e7;
  --encre: #2f2a24;
  --encre-douce: #8a8175;
  --ambre: #c78c34;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--papier);
  color: var(--encre);
  font: 400 16px/1.7 Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.ecran {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.mot {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  line-height: 1.25;
  font-weight: 400;
}

/* Le nom de domaine sous la phrase, en retrait : c'est la signature du lieu,
   pas son titre. Le trait ambre suffit a le rattacher au reste. */
.adresse {
  margin: 2.5rem 0 0;
  padding-top: 2.5rem;
  position: relative;
  color: var(--encre-douce);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
}

.adresse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3rem;
  height: 2px;
  margin-left: -1.5rem;
  background: var(--ambre);
}

.adresse a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--ambre);
  padding-bottom: 2px;
}

.pied {
  padding: 1.5rem;
  text-align: center;
  color: var(--encre-douce);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
}

.pied a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ddd3c2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --papier: #201d19;
    --encre: #f0e9dc;
    --encre-douce: #9a9184;
  }

  .pied a {
    border-bottom-color: #3c3630;
  }
}
