:root {
  --cyan: #00edff;
  --ink: #000000;
  --bg: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 5vmin;
  pointer-events: none;
}

.accroche {
  margin: 0;
  max-width: min(546px, 86vw);
  font-family: 'Momo Trust Display', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 6.2vw, 50px);
  line-height: 1.108;
  color: var(--ink);
  text-align: left;
}

.accroche .accent { color: var(--cyan); }

.identity {
  position: fixed;
  left: clamp(16px, 4vw, 52px);
  bottom: clamp(20px, 6vh, 69px);
  z-index: 2;
  font-style: normal;
  pointer-events: auto;
}

.identity .logo {
  display: block;
  height: clamp(18px, 4.6vw, 22px);
  width: auto;
  margin-bottom: 10px;
}

.identity .coords {
  margin: 0;
  font-family: 'Momo Trust Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 3.4vw, 13px);
  line-height: 1.5;
  color: var(--ink);
}

.identity .coords a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

