@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=Gruppo&family=Oswald:wght@400;700&family=Outfit:wght@100;400;700&family=Syncopate:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*, *:after, *:before {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Anurati";
  src: url("../fonts/anurati-regular-webfont.woff2") format("woff2"), url("../fonts/anurati-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sabomastersabomaster";
  src: url("../fonts/sabomaster-webfont.woff2") format("woff2"), url("../fonts/sabomaster-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cmx";
  src: url("../fonts/cmx.woff2") format("woff2"), url("../fonts/cmx.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cmx2";
  src: url("../fonts/cmx2.woff2") format("woff2"), url("../fonts/cmx2.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cybertronic";
  src: url("../fonts/cybertronic.woff2") format("woff2"), url("../fonts/cybertronic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --transDelay: 0s;
  --transSpeed: 0s;
  --transEasing: linear;
}

@keyframes rotation360 {
  from {
    rotate: 0;
  }
  to {
    rotate: 360deg;
  }
}
@keyframes countdown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes strokeload {
  from {
    stroke-dashoffset: 100000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes wave {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(1.3);
  }
}
@keyframes haloScale {
  from {
    scale: 1;
  }
  to {
    scale: 1.5;
  }
}
@keyframes cursor-blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scroll-down {
  5% {
    translate: 0 1em;
  }
  10% {
    translate: 0 0;
  }
}
@keyframes rotate {
  to {
    rotate: 360deg;
  }
}
html {
  font-size: 1px;
}

body {
  font-size: 16rem;
  font-family: sans-serif;
}

h1 {
  font-weight: 400;
}

.debug {
  display: none;
  position: fixed;
  top: 150px;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
}

.gyrohud {
  position: fixed;
  top: 10px;
  left: 10px;
}
.gyrohud--buttons {
  display: none;
}

.popin {
  position: fixed;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 800;
  color: white;
  width: fit-content;
  padding: 30rem 30rem 50rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10rem);
  border-radius: 10rem;
  z-index: 999;
  transition: all 0.5s;
  box-shadow: 0 0 30rem #4c90a4;
  opacity: 0;
  pointer-events: none;
}
.popin--close {
  position: absolute;
  top: 10rem;
  right: 30rem;
  font-size: 50rem;
  font-weight: 200;
  font-family: inherit;
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
}
.popin.is-open {
  opacity: 1;
  margin-top: -50rem;
  pointer-events: all;
}
.popin h2 {
  font-size: 50rem;
  margin-bottom: 20rem;
}
.popin h3 {
  font-size: 28rem;
  margin: 30rem 0 10rem;
}
.popin p {
  margin: 10rem 0;
  font-size: 24rem;
}
.popin a {
  color: inherit;
  text-decoration: none;
}

#qr-code {
  width: 200rem;
}
#qr-code p {
  font-size: 30rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5rem;
}
#qr-code img {
  width: 100%;
  border-radius: 15rem;
}
#qr-code.is-hidden {
  opacity: 0;
  translate: 0 150rem;
  pointer-events: none;
}

.pointer {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* edit this gradient: https://colorzilla.com/gradient-editor/#ff0100+0,ff0100+49,ffffff+100&1+0,1+49,0+77,0+100 */
  background-color: white;
  box-shadow: 0 0 10px white;
  transition: all 0.05s linear;
  scale: 1;
  opacity: 1;
}
.pointer.is-lost {
  transition: all 0s;
}
.pointer.is-hidden {
  opacity: 0;
  scale: 0;
}
.pointer.is-interact::before, .pointer.is-interact::after {
  opacity: 0;
  scale: 0;
}
.pointer::before, .pointer:after {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-size: 100%;
  background-repeat: no-repeat;
  translate: -25px -25px;
  transition: all 0.75s;
  filter: drop-shadow(0 0 2px black);
}
.pointer::before {
  background-image: url("../media/pointer-sight-1.png");
  animation: rotate 15s linear 0s infinite normal;
}
.pointer::after {
  background-image: url("../media/pointer-sight-2.png");
  animation: rotate 15s linear 0s infinite reverse;
}

.linkip {
  position: fixed;
  top: 500px;
  left: 0;
  transition: opacity 0.3s, scale 0.5s, left 0.1s, top 0.1s;
  scale: 0;
  opacity: 0;
}
.linkip.is-open {
  opacity: 1;
  scale: 1;
}
.linkip.is-mouseover {
  animation: linkipRotate 3s linear 0s infinite;
}
.linkip.is-hidden {
  display: none;
}
.linkip svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  margin: auto;
  display: block;
  rotate: -90deg;
}
.linkip svg path {
  stroke-linecap: round;
  stroke-width: 10;
}
.linkip svg path.grey {
  stroke: black;
}
.linkip svg path.purple {
  stroke: #ac320d;
  stroke-dasharray: 232.508;
  stroke-dashoffset: 100;
  /* adjust last number for variance */
}
.linkip img {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: scale 0.1s;
  scale: 0;
}
.linkip img.is-open {
  scale: 1;
}
@keyframes linkipRotate {
  to {
    rotate: 360deg;
  }
}

.geomarker {
  position: fixed;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, 0.1333333333);
}
.geomarker#geomarker-matrice {
  display: none;
}
.geomarker--text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20rem;
  font-weight: 700;
}
.geomarker--infobox {
  position: absolute;
  left: 80rem;
  top: -67rem;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.3882352941);
  height: auto;
  border: 1px solid white;
  border-radius: 5rem;
  min-width: 150rem;
  min-height: 20rem;
  transition: all 0.3s;
}
.geomarker--infobox::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  display: block;
  width: 50rem;
  height: 1rem;
  transform-origin: 100% 50%;
  rotate: -45deg;
  border-bottom: 1px solid white;
}
.geomarker--countdown {
  display: none;
  position: relative;
  top: -30rem;
}
.geomarker::before {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: block;
  z-index: -1;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  content: "";
  animation: pulse 0.5s infinite;
}
.geomarker:nth-of-type(1n)::before {
  animation-delay: 0s;
}
.geomarker:nth-of-type(2n)::before {
  animation-delay: 0.2s;
}
.geomarker:nth-of-type(3n)::before {
  animation-delay: 0.4s;
}
.geomarker:nth-of-type(4n)::before {
  animation-delay: 0.6s;
}
.geomarker:nth-of-type(5n)::before {
  animation-delay: 0.8s;
}
.geomarker:hover::before {
  animation: none;
  opacity: 0.4;
  transform: scale(1.3);
}
.geomarker.is-clicked {
  background: linear-gradient(to bottom, gray 0%, dimgray 100%);
}
.geomarker.is-clicked:before {
  animation: blastOut 1s;
}
@keyframes pulse {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  90% {
    transform: scale(5);
    opacity: 0;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
@keyframes blastOut {
  from {
    transform: scale(0.9);
    opacity: 0.4;
  }
  to {
    transform: scale(10);
    opacity: 0;
  }
}

.btn {
  display: inline-block;
  min-width: 170rem;
  background-color: #207892;
  padding: 10rem 30rem;
  font-size: 0.7cqw;
  letter-spacing: 2rem;
  color: white;
  text-transform: uppercase;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.btn.is-white {
  border: 2rem solid white;
  background-color: transparent;
}
.btn.is-white:hover {
  color: #207892;
  background-color: white;
}
.btn:hover {
  color: #207892;
  background-color: white;
}

.btn-crop {
  width: fit-content;
  padding: 6rem 32rem;
  font-family: inherit;
  font-size: 14rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  color: white;
  background-color: #0b373c;
  border: none;
  transition: all 0.5s;
  clip-path: polygon(0 20rem, 20rem 0, 100% 0, 100% calc(100% - 20rem), calc(100% - 20rem) 100%, 0 100%);
}
.btn-crop.is-white {
  color: white;
  background-color: transparent;
  border: 1px solid white;
}

.btn-picto {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 5rem 15rem;
  border: 2rem solid #207892;
  border: none;
  background-color: transparent;
  color: #207892;
  line-height: 1.5;
  border-radius: 5rem;
  font-family: inherit;
  font-size: 16rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
}
.btn-picto a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.btn-picto a:hover {
  transform: skewX(-20deg);
  font-weight: 700;
}
.btn-picto:hover::before {
  filter: drop-shadow(0 0 14rem #207892);
  scale: 1.2;
}
.btn-picto::before {
  content: "B";
  font-family: "cmx2";
  font-size: 20rem;
  position: relative;
  margin: 0 14rem;
  transition: all 0.2s;
}
.btn-picto.is-active {
  color: white;
  filter: drop-shadow(0 0 14rem #fff);
}
.btn-picto.is-active::before {
  filter: drop-shadow(0 0 14rem #fff);
}

.btn-blink {
  display: box;
  position: relative;
  width: 100rem;
  height: 100rem;
  background: transparent;
  box-shadow: 0 4rem 4rem rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  line-height: 100rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 1px solid #27a6b3;
}
.btn-blink::before {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  opacity: 0;
  content: "";
  animation: btn-blink 1s infinite;
}
.btn-blink:hover::before {
  animation: none;
  opacity: 0.4;
  transform: scale(1.3);
}
.btn-blink.is-clicked {
  background: linear-gradient(to bottom, gray 0%, dimgray 100%);
}
.btn-blink.is-clicked:before {
  animation: btn-blink2 1s;
}
@keyframes btn-blink {
  from {
    transform: scale(0.1);
    opacity: 0.4;
  }
  to {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes btn-blink2 {
  from {
    transform: scale(0.9);
    opacity: 0.4;
  }
  to {
    transform: scale(10);
    opacity: 0;
  }
}

.hud--subtitle {
  font-size: 12rem;
  font-weight: 400;
  letter-spacing: 1rem;
  color: #207892;
  text-shadow: 0 0 10rem #4c90a4;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  translate: -50% 0%;
  transform-origin: 50% 0;
  --pictoSize: 1;
}
.hud--subtitle::after {
  font-family: "cmx2";
  content: "Q";
  display: block;
  font-size: 10rem;
  margin: 5rem auto;
  width: 0;
  scale: var(--pictoSize);
  transition: scale 0.5s;
}
.hud .infohud {
  position: absolute;
  bottom: 2vh;
}
.hud .infohud:nth-of-type(1) {
  left: 7%;
}
.hud .infohud:nth-of-type(2) {
  left: 20%;
}
.hud .infohud:nth-of-type(3) {
  right: 20%;
}
.hud .infohud:nth-of-type(4) {
  right: 7%;
}

#btn-start-game {
  position: absolute;
  top: 23rem;
  left: 50%;
  translate: -50% 0%;
  text-align: center;
  display: block;
  pointer-events: all;
  transition: all 0.3s;
  color: white;
  font-size: 30rem;
  filter: blur(0rem) drop-shadow(0 0 16rem #ffffff);
  animation: lookAtMe 2s ease-in-out infinite alternate;
}
#btn-start-game::before {
  display: block;
  content: "S";
  font-size: 15rem;
}
#btn-start-game.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes lookAtMe {
  2% {
    scale: 1;
  }
  8% {
    scale: 1.1;
  }
  14% {
    scale: 1;
  }
}

#btn-reset-game {
  display: none;
  position: absolute;
  top: 20rem;
  left: 2%;
}
#btn-reset-game::before {
  content: "D";
}

#btn-false-lighting {
  position: absolute;
  top: 30rem;
  right: 2%;
  padding: 0;
  transition: all 0.5s;
}
#btn-false-lighting.is-visible {
  rotate: x 0deg;
}

#btn-projet {
  position: absolute;
  top: 30rem;
  left: 2%;
  transition: all 0.5s;
}
#btn-projet.is-visible {
  rotate: x 0deg;
}

#btn-lang {
  display: none;
  position: absolute;
  top: 30rem;
  left: 2%;
  transition: all 0.5s;
}
#btn-lang.is-visible {
  rotate: x 0deg;
}

.burger {
  position: absolute;
  left: 49%;
  height: 0vh;
  font-size: 0.5cqw;
  width: 6em;
  height: 6em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 10rem #6380d7);
  transition: all 0.3s;
}
.burger.is-closed.is-active {
  filter: hue-rotate(180deg);
}
.burger.is-closed.is-active span:nth-child(1) {
  translate: -10em 0;
  opacity: 0;
}
.burger.is-closed.is-active span:nth-child(3) {
  translate: 10em 0;
  opacity: 0;
}
.burger.is-closed.is-active span:nth-child(2) {
  rotate: 45deg;
  translate: 0em 2.8em;
}
.burger.is-closed.is-active span:nth-child(4) {
  rotate: -45deg;
  translate: -1em 0em;
}
.burger.is-active span:nth-child(n) {
  translate: 0 0;
  opacity: 1;
}
.burger span {
  display: block;
  height: 0.4em;
  margin-bottom: 0.5em;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
  opacity: 0;
}
.burger span:nth-child(1) {
  background-image: url("../media/svg/burger1.svg");
  width: 3.5em;
  translate: -10em 0;
}
.burger span:nth-child(2) {
  background-image: url("../media/svg/burger2.svg");
  width: 5em;
  margin-left: -1.5em;
  translate: 10em 0;
}
.burger span:nth-child(3) {
  background-image: url("../media/svg/burger3.svg");
  width: 3.5em;
  translate: -10em 0;
}
.burger span:nth-child(4) {
  background-image: url("../media/svg/burger4.svg");
  width: 5em;
  translate: 10em 0;
}

.scroll-down {
  display: none;
  position: absolute;
  bottom: 0cqh;
  left: 50%;
  translate: -50% 0;
  width: 10em;
  padding-bottom: 50rem;
  font-size: 0.8cqw;
  font-family: Oswald;
  font-weight: 200;
  color: #b6d1e4;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.5s;
  filter: drop-shadow(0 0 10rem rgb(0, 255, 213));
}
.scroll-down--arrow {
  display: block;
  margin-top: 0.5em;
  rotate: 180deg;
  font-family: cmx;
  font-size: 0.75em;
  text-align: center;
  position: relative;
  left: 1em;
  animation: scroll-down 3s ease-in infinite;
}
.scroll-down:hover {
  scale: 2;
}
.scroll-down.is-hidden {
  opacity: 0;
}

.cadre {
  pointer-events: none;
  transition: all 0.3s;
  left: -10rem;
}
.cadre.is-closed {
  filter: hue-rotate(180deg);
}
.cadre .cadre-right,
.cadre .cadre-left {
  --cadreHeight: 45%;
  --cadreWidth: 45%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.cadre .cadre-right::after, .cadre .cadre-right::before,
.cadre .cadre-left::after,
.cadre .cadre-left::before {
  content: "";
  display: block;
  width: var(--cadreWidth);
  height: var(--cadreHeight);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-image: url("../media/svg/hud-corner.svg");
  background-position: 0% 100%;
  filter: hue-rotate(120deg) drop-shadow(0 0 10rem rgb(0, 255, 213));
}
.cadre .cadre-left::before {
  left: 1%;
  top: 0.5vh;
  transform: scaleY(-1);
}
.cadre .cadre-left::after {
  left: 1%;
  bottom: 0.5vh;
}
.cadre .cadre-right::before {
  right: 1%;
  top: 0.5vh;
  transform: scale(-1, -1);
}
.cadre .cadre-right::after {
  right: 1%;
  bottom: 0.5vh;
  transform: scale(-1, 1);
}

.infohud {
  color: #207892;
  width: fit-content;
  display: flex;
  transition: all 0.3s;
}
.infohud:nth-child(1) {
  transition-delay: 0.2s;
}
.infohud:nth-child(2) {
  transition-delay: 0.4s;
}
.infohud:nth-child(3) {
  transition-delay: 0.6s;
}
.infohud:nth-child(4) {
  transition-delay: 0.8s;
}
.infohud--key {
  font-size: 10rem;
  text-transform: uppercase;
  border-bottom: 2px solid #207892;
  margin-right: 10rem;
  text-align: right;
}
.infohud--val {
  font-size: 20rem;
  line-height: 1;
}
.infohud--val img {
  width: 50rem;
}
.infohud.is-battery .infohud--val {
  color: darkred;
  animation: battery 1s linear 0s infinite;
}
.infohud.is-active {
  rotate: x 0deg;
  translate: 0rem 0;
}
@keyframes battery {
  to {
    opacity: 0;
  }
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
}
.stars .star {
  position: fixed;
  transition: transform var(--transDelay);
}
.stars .star:nth-child(1) {
  left: 10%;
  bottom: -1.5976999119vh;
  width: 75.820773517rem;
}
.stars .star:nth-child(2) {
  left: 20%;
  bottom: -7.7098953024vh;
  width: 36.2010371032rem;
}
.stars .star:nth-child(3) {
  left: 30%;
  bottom: -9.602778724vh;
  width: 42.9119456674rem;
}
.stars .star:nth-child(4) {
  left: 40%;
  bottom: -2.3954864049vh;
  width: 58.1754130923rem;
}
.stars .star:nth-child(5) {
  left: 50%;
  bottom: -4.268406362vh;
  width: 20.5317535116rem;
}
.stars .star:nth-child(6) {
  left: 60%;
  bottom: -5.9248746856vh;
  width: 52.5549012367rem;
}
.stars .star:nth-child(7) {
  left: 70%;
  bottom: -3.5684190337vh;
  width: 33.4708985949rem;
}
.stars .star:nth-child(8) {
  left: 80%;
  bottom: -0.9526487454vh;
  width: 66.0511264031rem;
}
.stars .star:nth-child(9) {
  left: 90%;
  bottom: -4.9890313689vh;
  width: 46.5419756531rem;
}
.stars .star:nth-child(10) {
  left: 100%;
  bottom: -3.3317256195vh;
  width: 78.196924613rem;
}

.container {
  container-type: size;
  container-name: main-container;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1cqw;
}

.full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body {
  --noiseOpacity: .075;
  width: 100%;
  height: 100vh;
  font-family: "Outfit";
  color: #BF7948;
  padding-bottom: 100px;
  font-size: 16rem;
  line-height: 1.5;
  background-color: rgb(0, 0, 0);
  -webkit-background: linear-gradient(45deg, rgb(8, 50, 77) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(45deg, rgb(8, 50, 77) 0%, rgb(0, 0, 0) 100%);
  background-size: auto 100vh;
  background-attachment: fixed;
}
body::after {
  content: "";
  display: block;
  background-image: url("../media/texture-pixel-1-5.png");
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
body::before {
  pointer-events: none;
  content: "";
  display: block;
  background-image: url("../media/noise.gif");
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: var(--noiseOpacity);
}

.dataplanet {
  pointer-events: none;
  width: fit-content;
  position: fixed;
  right: 8%;
  top: 50%;
  translate: 0% -50%;
  z-index: 25;
  scale: 1.25;
  counter-reset: my-counter;
  font-size: 1cqw;
}
.dataplanet h2,
.dataplanet h3,
.dataplanet li {
  transition: rotate 0.5s;
  rotate: x -90deg;
}
.dataplanet.is-active {
  pointer-events: all;
}
.dataplanet.is-active h2,
.dataplanet.is-active h3,
.dataplanet.is-active li {
  rotate: x 0deg;
}
.dataplanet--title {
  font-size: 2em;
  font-weight: 200;
  color: white;
  text-align: right;
  text-transform: uppercase;
  margin: -1em 0 0;
}
.dataplanet--subtitle {
  font-size: 0.9em;
  font-weight: 200;
  color: white;
  text-align: right;
  text-transform: uppercase;
  margin-right: 1em;
  margin-bottom: 1em;
}
.dataplanet--subtitle::before {
  content: "";
  display: block;
  width: 10%;
  margin-left: auto;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.466);
}
.dataplanet--item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  font-size: 0.5em;
  font-weight: 400;
  color: white;
  text-align: left;
  text-transform: uppercase;
}
.dataplanet--item:hover > * {
  background-color: #711414;
}
.dataplanet--item > * {
  width: 50%;
  padding: 0.5em 2em;
  background-color: rgba(24, 60, 68, 0.7411764706);
  transition: all 0.2s 0s;
}
.dataplanet--item.is-header {
  margin: 10rem 0 5rem;
  position: relative;
}
.dataplanet--item.is-header > * {
  clip-path: polygon(0 10rem, 10rem 0, 100% 0, 100% 100%, calc(100% - 10rem) 100%, 0 100%);
  width: 100%;
  padding: 0.5em 0 0.5em;
  font-size: 0.9em;
  text-align: center;
  background-color: rgba(80, 110, 118, 0.7607843137);
}
.dataplanet--item.is-header::after {
  position: absolute;
  left: 0;
  bottom: -5rem;
  content: "";
  display: block;
  width: 100%;
  height: 0.2em;
  background-color: rgba(80, 110, 118, 0.7607843137);
}
.dataplanet--item.is-header::before {
  display: none;
}
.dataplanet--item:not(.is-header) .dataplanet--key {
  position: relative;
}
.dataplanet--item:not(.is-header) .dataplanet--key::before {
  position: absolute;
  left: -30rem;
  top: 0;
  content: "0" counter(my-counter, decimal-leading-zero);
  counter-increment: my-counter;
  width: 20rem;
  height: auto;
  font-size: 8rem;
  font-weight: 200;
  z-index: 10;
  border-bottom: 1rem solid rgba(255, 255, 255, 0.2666666667);
}
#view2 {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#view2 .monster--close {
  display: none;
}
#view2 .lowbattery {
  width: fit-content;
  font-size: 100rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0px 0px 10rem rgba(255, 0, 0, 0.521);
  color: red;
  text-transform: uppercase;
  animation: blink 1s infinite;
}
#view2 .lowbattery span {
  display: block;
  font-size: 0.2em;
}
#view2 .lowbattery span sup {
  font-size: 0.7em;
  position: relative;
  top: -10rem;
}
@keyframes blink {
  0% {
    opacity: 1;
    /* Le texte est visible */
  }
  50% {
    opacity: 0;
    /* Le texte devient invisible */
  }
  100% {
    opacity: 1;
    /* Le texte redevient visible */
  }
}

.testfilter {
  position: fixed;
  top: 0;
  left: 0;
  width: 98%;
  height: 98vh;
}

.game {
  --width: 16cqw;
  --height: 50cqh;
  position: fixed;
  top: 50%;
  left: 30rem;
  translate: -120% -50%;
  border-radius: 10rem;
  box-shadow: 0 0 10rem rgba(148, 208, 222, 0.4705882353);
  color: white;
  background-color: rgba(7, 29, 33, 0.6392156863);
  background-image: url("../media/svg/bgcross.svg");
  background-size: 10rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4666666667);
  padding: 10rem 0;
  overflow: hidden;
  width: var(--width);
  height: auto;
  padding: 15rem 20rem;
  -webkit-backdrop-filter: blur(20rem);
  backdrop-filter: blur(20rem);
  transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transition: all 0.3s;
}
.game.is-active {
  translate: 0% -50%;
}
.game--section:nth-child(1) {
  margin-bottom: 10rem;
}
.game--section:nth-child(2) {
  margin-bottom: 40rem;
}
.game--section:nth-child(2)::after {
  display: block;
  width: fit-content;
  content: "Q";
  font-family: "cmx2";
  font-size: 14rem;
  position: relative;
  margin: 0 auto;
}
.game h2 {
  margin-bottom: 10rem;
  font-size: 28rem;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.game h2::before {
  display: block;
  content: "L";
  font-family: "cmx2";
  font-size: 16rem;
  position: relative;
  margin: auto;
  width: 100%;
  text-align: center;
}
.game p {
  margin-bottom: 5%;
  font-size: 10rem;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
}
.game--rank {
  margin-bottom: 0rem;
  padding-right: 10rem;
  text-align: center;
  font-size: 34rem;
}
.game--list {
  margin-left: 8rem;
}
.game--list li {
  font-size: 12rem;
  white-space: pre;
}
.game--list li::before {
  content: "W";
  font-family: "cmx2";
  font-size: 7rem;
  position: relative;
  margin: 0 10rem 0 0;
  top: -5rem;
}
.game--countdown {
  font-family: Orbitron, monospace;
  font-size: 40rem;
  font-weight: 900;
  text-align: center;
  background-color: white;
  color: #207892;
  border-radius: 6rem;
  margin-bottom: 2rem;
}
.game--countdown-unit {
  font-size: 0.5em;
}

.monster {
  --width: 98%;
  --height: 98cqh;
  position: fixed;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 10rem;
  box-shadow: 0 0 10rem rgba(148, 208, 222, 0.4705882353);
  color: white;
  background-color: rgba(7, 29, 33, 0.6392156863);
  background-image: url("../media/svg/bgcross.svg");
  background-size: 10rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4666666667);
  opacity: 0;
  width: 0;
  height: 1vh;
  padding: 0rem 0 0rem 0;
  overflow: hidden;
  transition: opacity 0.5s 1.5s, width 0.5s 1s, height 0.5s 0s;
  --heightAB: 0%;
}
.monster.is-small {
  --width: 50%;
  --height: 50cqh;
}
.monster.is-small .monster--close {
  position: absolute;
  top: 20rem;
  right: 15rem;
}
.monster.is-open {
  opacity: 1;
  width: var(--width);
  height: var(--height);
  padding: 15rem 55rem 12rem 55rem;
  -webkit-backdrop-filter: blur(20rem);
  backdrop-filter: blur(20rem);
  transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transition: opacity 0.1s 0s, width 0.5s 0s, height 0.3s 0.75s, padding 0.3s 0.75s;
}
.monster.is-open h2 {
  rotate: x 0deg;
}
.monster.is-open h3 {
  overflow: hidden;
  width: 100%;
  padding: 0rem 0 2rem 15rem;
  transition: all 1s 1.5s;
}
.monster.is-open .monster--options .btn {
  rotate: x 0deg;
}
.monster.is-open .monster--options .btn:nth-child(1) {
  transition-delay: 1.5s;
}
.monster.is-open .monster--options .btn:nth-child(2) {
  transition-delay: 2s;
}
.monster::after, .monster::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-size: 20rem auto;
  background-repeat: no-repeat;
  height: var(--heightAB);
  width: 100%;
  z-index: -1;
  transition: all 3s;
}
.monster::before {
  top: 1%;
  left: 0;
  background-image: url("../media/svg/cadre-lt.svg"), url("../media/svg/cadre-rt.svg");
  background-position: 1% 1%, 99% 1%;
}
.monster::after {
  bottom: 1%;
  left: 0;
  background-image: url("../media/svg/cadre-lb.svg"), url("../media/svg/cadre-rb.svg");
  background-position: 1% 100%, 99% 100%;
}
.monster h2 {
  margin-bottom: 20rem;
  font-family: "Oswald";
  font-size: 80rem;
  font-weight: 200;
  line-height: 1;
}
.monster h2 span {
  display: none;
}
.monster h3 {
  width: 0rem;
  padding: 0rem 0 0 0;
  height: 20rem;
  overflow: hidden;
  margin-bottom: 15rem;
  font-family: "Oswald";
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.2;
  color: #104555;
  background-color: #ffffff;
  text-transform: capitalize;
  clip-path: polygon(calc(100% - 10rem) 0, 100% 10rem, 100% 100%, 10rem 100%, 0 calc(100% - 10rem), 0 0);
}
.monster--close {
  position: absolute;
  top: 20rem;
  right: 60rem;
  width: 50rem;
  height: 50rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s 0s;
}
.monster--close img {
  width: 100%;
}
.monster--close:hover {
  rotate: 90deg;
}
.monster--wrap {
  display: flex;
  column-gap: 15rem;
}
.monster--right {
  width: 50%;
  flex-shrink: 0;
}
.monster--options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10rem;
}
.monster--options .btn {
  rotate: x -90deg;
}
.monster--info {
  width: fit-content;
  margin: 10rem auto 0 0;
  font-size: 8rem;
  text-decoration: underline;
  text-transform: uppercase;
  background-image: url("../media/svg/danger.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-left: 26rem;
}
.monster--info::before {
  width: 10rem;
}
.monster .latlng {
  width: fit-content;
  font-size: 10rem;
  font-family: "Oswald";
  text-transform: uppercase;
  background-image: url("../media/svg/picto-loc.svg");
  background-size: 20rem;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.monster .latlng--label {
  display: inline-block;
  border-bottom: 4rem solid white;
  margin: 0rem 5rem 0 0;
  position: relative;
  top: -7rem;
}
.monster .latlng--value {
  font-size: 1.8em;
}
.monster .latlng sup {
  position: relative;
  top: -7rem;
  left: 1rem;
}
.monster .latlng::before {
  width: 10rem;
}
.monster--level1 {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
.monster--content {
  position: relative;
  margin: 25rem 0 10rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-shadow: 0 0 5rem black;
  text-transform: uppercase;
  border-top: 2rem solid rgba(122, 157, 155, 0.7725490196);
  padding: 20rem 0 0;
}
.monster--content::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -10rem;
  right: 0;
  background-image: url("../media/svg/barre.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 100% 0;
  width: 100%;
  height: 5rem;
  opacity: 0.5;
}
.monster--skill {
  margin-top: 0rem;
  width: 20%;
}
.monster--picture {
  width: 100%;
  height: 650rem;
  text-align: center;
  padding: 0rem;
  filter: invert(22%) sepia(96%) saturate(117%) hue-rotate(132deg) brightness(93%) contrast(120%);
  position: relative;
  margin-top: -100rem;
  transition: filter 0.3s;
}
.monster--picture.is-true-colors {
  filter: none;
}
.monster--picture.is-video img {
  display: none;
}
.monster--picture.is-img video {
  display: none;
}
.monster--picture img {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8392156863));
}
.monster--picture video,
.monster--picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes zoom {
  to {
    scale: 1.5;
  }
}
.monster--picture::after {
  border-radius: 30rem;
  content: "";
  display: inline-block;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  height: 100%;
  width: calc(100% - 0rem);
  top: 0;
  left: 0rem;
  z-index: 10;
  transition: all 0.5s;
}
.monster--picture:hover::after {
  opacity: 0.1;
}
.monster--picture.is-truecolor .monster--picture::after {
  display: none;
}
.monster--picture.is-truecolor {
  filter: none;
}
.monster--skills {
  width: 20%;
  display: flex;
  justify-content: space-between;
}
.monster--skills .btn {
  margin: 10rem 0;
}
.monster--data {
  margin-top: 20rem;
  font-size: 8rem;
}
.monster--text {
  width: 75%;
  font-size: 0.9cqw;
  line-height: 2;
}
.monster--text::after {
  content: "_";
  animation: cursor-blink 1s steps(2, end) 0s infinite both;
}
.monster--text.window--data {
  font-size: 8rem;
  text-transform: uppercase;
  text-align: left;
  color: #d5ae75;
  margin-top: 15rem;
}
.monster--footer {
  position: absolute;
  bottom: 22rem;
  right: -15rem;
  display: flex;
  justify-content: flex-end;
  margin-top: 10rem;
  padding-right: 40rem;
}
.monster--footer .footdata {
  margin-left: 40rem;
}

.infodata {
  width: 100%;
  margin: 0 auto 30rem;
}
.infodata--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7rem 1rem;
  border-top: 1rem solid grey;
  border-bottom: 1rem solid grey;
  font-weight: 200;
}
.infodata--row:first-child {
  font-weight: 400;
}
.infodata--row:last-child {
  border-top: none;
}
.infodata--cell {
  position: relative;
  padding-left: 50rem;
  font-size: 12rem;
  text-transform: uppercase;
  line-height: 1.2;
  width: 20%;
  overflow: hidden;
  transition: all 0.2s;
}
.infodata--cell.is-battery img {
  width: 40rem;
}
.infodata--cell::after, .infodata--cell:last-child::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 30rem;
  width: 15rem;
  border-left: 1rem solid grey;
  background-image: url("../media/svg/square01.svg");
  background-size: 3rem;
  background-position: 5rem 0;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.infodata--cell:last-child::before {
  right: 0;
  left: initial;
}
.infodata--cell.is-open {
  scale: 1.5;
}

.skill {
  width: 110rem;
  --width: 0%;
}
.skill--bar {
  margin: 5rem 0;
  position: relative;
  width: 100%;
  height: 16rem;
  background-image: url("../media/svg/jauge.svg");
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.skill--bar::after {
  content: "";
  display: block;
  width: var(--width);
  height: 35%;
  background-color: #81993f;
  position: absolute;
  top: 34%;
  left: 5%;
  transition: all 2s;
}
.skill--label {
  margin-top: 5rem;
  font-size: 14rem;
  text-transform: uppercase;
}
.skill--value {
  font-family: "Oswald";
  font-size: 52rem;
  line-height: 1;
}
.skill--value span {
  font-size: 0.5em;
}

.rate {
  --progress: 10%;
  position: relative;
  width: 80rem;
  height: 80rem;
  border: 2rem solid white;
  border-radius: 15rem;
  text-align: center;
}
.rate--picto {
  margin-top: 5rem;
  color: white;
  font-size: 10rem;
}
.rate--count {
  position: absolute;
  top: 38rem;
  left: 0;
  width: 100%;
  color: hotpink;
  font-size: 11rem;
}
.rate--jauge {
  width: 50rem;
  height: 50rem;
  margin: 5rem auto 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, white 79%, transparent 80% 100%), conic-gradient(#A9577D var(--progress), #A9CF65 0);
}
.rate.is-life .rate--jauge {
  --progress: 100%;
}
.rate.is-heart .rate--jauge {
  --progress: 30%;
}
.rate.is-temperature .rate--jauge {
  --progress: 50%;
}

.footdata {
  position: relative;
  width: fit-content;
  font-size: 10rem;
  text-transform: uppercase;
  text-align: right;
  color: white;
  padding-left: 17rem;
}
.footdata::before {
  content: "";
  display: block;
  width: 15rem;
  height: 15rem;
  position: absolute;
  top: -2rem;
  left: -4rem;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.footdata::before {
  background-image: url("../media/svg/picto-octo.svg");
}

.burger {
  position: absolute;
  left: 49%;
  height: 0vh;
  font-size: 0.5cqw;
  width: 6em;
  height: 6em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 10rem #6380d7);
  transition: all 0.3s;
}
.burger.is-closed.is-active {
  filter: hue-rotate(180deg);
}
.burger.is-closed.is-active span:nth-child(1) {
  translate: -10em 0;
  opacity: 0;
}
.burger.is-closed.is-active span:nth-child(3) {
  translate: 10em 0;
  opacity: 0;
}
.burger.is-closed.is-active span:nth-child(2) {
  rotate: 45deg;
  translate: 0em 2.8em;
}
.burger.is-closed.is-active span:nth-child(4) {
  rotate: -45deg;
  translate: -1em 0em;
}
.burger.is-active span:nth-child(n) {
  translate: 0 0;
  opacity: 1;
}
.burger span {
  display: block;
  height: 0.4em;
  margin-bottom: 0.5em;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
  opacity: 0;
}
.burger span:nth-child(1) {
  background-image: url("../media/svg/burger1.svg");
  width: 3.5em;
  translate: -10em 0;
}
.burger span:nth-child(2) {
  background-image: url("../media/svg/burger2.svg");
  width: 5em;
  margin-left: -1.5em;
  translate: 10em 0;
}
.burger span:nth-child(3) {
  background-image: url("../media/svg/burger3.svg");
  width: 3.5em;
  translate: -10em 0;
}
.burger span:nth-child(4) {
  background-image: url("../media/svg/burger4.svg");
  width: 5em;
  translate: 10em 0;
}

.view {
  z-index: 899;
  width: 90vw;
  height: 90vh;
  padding: 50px;
  opacity: 1;
  background-color: rgba(0, 174, 255, 0.662);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  color: white;
  overflow: hidden;
  transition: width 0.5s, height 0.5s 1s, padding 0.5s 1s, opacity 0.01s, rotate 0.5s 2s;
}
.view h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 30px;
}
.view.is-close {
  height: 10px;
  width: 0px;
  padding: 0;
  opacity: 0;
  transition: width 0.5s 1s, height 0.5s, padding 0.5s, opacity 0.1s 1.5s;
}

.site-header--title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
  font-family: "Anurati";
  font-family: "sabomastersabomaster";
  font-size: 9cqw;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(160, 79, 22, 0);
  transition: opacity 1s;
  color: rgba(255, 255, 255, 0);
  text-align: center;
  animation: scale 10s 0s infinite alternate;
}
.site-header--title.is-active {
  opacity: 1;
}
.site-header--title.anim span {
  animation: reveal4 4s 0s ease-out both;
  animation-delay: calc(0s + 0.55s * (var(--index) - 2));
}
.site-header--title.is-zoomout {
  letter-spacing: 50rem;
  font-size: 20rem;
  opacity: 0;
  transition: letter-spacing 2s, font-size 2s, opacity 2s 3s;
}
.site-header--title span {
  display: inline-block;
  transition: box-shadow 1s, background-color 1s, translate 0.1s linear;
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgba(254, 255, 255, 0) 5%, rgba(213, 235, 251, 0) 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: blur(2rem) drop-shadow(0 0 16rem rgba(63, 209, 187, 0.6509803922));
  white-space: pre;
}
.site-header--title span.is-star {
  color: transparent;
  text-shadow: none;
  line-height: 1;
  border-radius: 50%;
}
@keyframes scale {
  100% {
    transform: scale(1.1);
  }
}
@keyframes reveal3 {
  0% {
    letter-spacing: 0.5rem;
    opacity: 0;
    scale: 0.7;
  }
  100% {
    letter-spacing: 25rem;
    opacity: 1;
    scale: 1;
  }
}
@keyframes reveal4 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes reveal5 {
  100% {
    scale: 1;
  }
}
@keyframes bg-progress {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes reveal {
  100% {
    transform: scale(1.2);
  }
}

.popin-soline {
  z-index: 1000;
}

.popin-projet {
  width: 45cqw;
  z-index: 1000;
}
.popin-projet h2,
.popin-projet h3,
.popin-projet h4 {
  text-transform: uppercase;
}
.popin-projet h4 {
  font-size: 12rem;
  margin-bottom: -20rem;
}
.popin-projet img.banniere {
  width: 150rem;
  margin: 30rem auto;
}
.popin-projet img.telephone {
  height: 22rem;
  filter: brightness(0.3);
}

.popin-game {
  left: 17%;
  top: 56%;
  width: 500rem;
}
.popin-game strong {
  font-size: 1.2em;
  text-transform: uppercase;
}
.popin-game #qr-code {
  margin: 50rem auto 40rem;
}

#view3 {
  color: white;
  text-shadow: none;
}
#view3 h1 {
  font-family: Orbitron;
  font-size: 70rem;
  font-weight: 700;
}
#view3 h3 {
  height: auto;
  margin: 30rem 0 0;
  padding: 5rem 0rem;
  text-indent: 30rem;
  font-size: 20rem;
  font-family: inherit;
  font-weight: 700;
  background-color: white;
  color: #207892;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}
#view3 blockquote {
  margin-top: 30rem;
  font-size: 20rem;
  font-weight: 400;
}
#view3 blockquote p:nth-child(1) {
  font-style: italic;
  margin-bottom: 10rem;
}
#view3 blockquote p:nth-child(2) {
  font-size: 14rem;
}
#view3 blockquote p:nth-child(2) cite {
  padding-bottom: 5rem;
  border-bottom: 2rem solid white;
}

/*
.follower {
	$color: #27a6b3;
	max-width: 350rem;
	padding: 15rem 10rem 30rem 30rem;
	background-color: #00000063;
	border: 1px solid #27a6b3;
	font-size: 10rem;
	transition: transform .05s, background .2s, color .2s;
	color: #27a6b3;
	// opacity: 0;
	// pointer-events: none;

	.btn-blink {
		position: absolute;
		top: -150rem;
		left: -150rem;

	}

	&--title {
		font-family: Oswald, sans-serif;
		font-weight: 700;
		font-size: 3em;
		line-height: 1;
		text-transform: uppercase;
		@include angles('../media/svg/angle-follower.svg', up, 10rem, 5%);
	}

	&--name {
		font-size: 2em;
		font-style: italic;
		text-transform: uppercase;
		margin-top: 15rem;
	}

	&--desc {
		font-size: 1.2em;
		margin: 5rem 0 0;
		@include angles('../media/svg/angle-follower.svg', down, 10rem, 5%);
	}

	&--data {
		font-size: 1.2em;
		margin: 5rem 0 0;
	}

	&--label {
		display: inline-flex;
		width: 100rem;
		overflow: hidden;
		vertical-align: middle;
		// border-bottom: 1rem solid black;
		// font-style: italic;

		&::after {
			content: '.................................................................................';
			margin: -5rem 5rem 0 5rem;
			font-size: 1.5em;
		}

		img {
			width: 40rem;
		}
	}

	&--value {
		font-size: 1.2em;
		font-weight: 700;
	}

	&.hidden {
		opacity: 0;
		pointer-events: none;
	}

	&:hover {
		background-color: $gunmetal2;
		color: rgb(220, 255, 255, 1);
	}

	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 85rem;
		border: .5px solid $color;
		transform-origin: 0 0;
		rotate: -135deg;
		opacity: .5;
	}
}

*/
body {
  user-select: none;
}

.container {
  pointer-events: none;
  pointer-events: all;
}

.hud {
  pointer-events: none;
}
.hud > * {
  pointer-events: all;
}

.dataplanet {
  pointer-events: none;
}

#btn-false-lighting,
#btn-lang,
#btn-burger {
  pointer-events: all;
}

.monster {
  pointer-events: all;
}

.gyrohud {
  z-index: 500;
}

#pointer,
#linkip {
  z-index: 2000;
}

#btn-start-game {
  z-index: 800;
}

.container {
  z-index: 777;
}
.container .cadre {
  z-index: 200;
}
.container .monster {
  z-index: 700;
}
.container .site-nav {
  z-index: 100;
}
.container #btn-lang {
  z-index: 500;
}
.container #btn-false-lighting {
  z-index: 500;
}
.container #btn-burger {
  z-index: 500;
}

.stars {
  z-index: -1;
}

.mobile-warning {
  display: none;
  opacity: 1;
  width: 95%;
}

@media screen and (max-aspect-ratio: 1/1), screen and (max-width: 800px) {
  .container,
  .popin,
  .pointer,
  #btn-start-game,
  canvas {
    display: none;
  }
  .popin.mobile-warning {
    display: block;
  }
}
@media (min-aspect-ratio: 2) {
  .container {
    width: auto;
    height: 100vh;
    aspect-ratio: 2;
  }
}
@media (min-aspect-ratio: 1/1) and (max-aspect-ratio: 2) {
  .container {
    width: 100%;
    height: auto;
    aspect-ratio: 2;
  }
}/*# sourceMappingURL=screen.css.map */p */