/* ========================= */
/* RESET GLOBAL */
/* ========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

/* ========================= */
/* HTML / BODY */
/* ========================= */

html,
body {
  width: 100%;
  height: 100%;

  overflow: hidden;

  background: #020617;

  font-family: Arial, sans-serif;
}

/* ========================= */
/* IMAGES */
/* ========================= */

img {
  max-width: 100%;
  display: block;
}

/* ========================= */
/* BOUTONS */
/* ========================= */

button {
  font: inherit;
}
/* ========================= */
/* ANTI-SÉLECTION CHROME */
/* ========================= */

body,
.app,
.screen,
.content-screen,
.map-screen,
.menu-screen,
.boutique-screen {
  user-select: none;
  -webkit-user-select: none;
}

body img,
.app img,
.screen img,
.content-screen img,
.map-screen img,
.menu-screen img,
.boutique-screen img {
  -webkit-user-drag: none;
}

/* Garder les champs texte utilisables */
input,
textarea,
.content-input,
.content-textarea {
  user-select: text;
  -webkit-user-select: text;
}