/* --- RESET ET STYLES GÉNÉRAUX --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  position: relative;
  /*width: 100%;*/
  /*height: 100%;*/
  min-height: 100vh;
  color: #e7dfd3;
  line-height: 1.6;
  background: url("/assets/images/labGamesBackground.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
  z-index: -1;
}
