/* style.css */
html,body{
	/*cursor: none;*/
  height: 100%;
	background-color: #21252b;
	background: url(assets/BACKGROUND.jpg) no-repeat center fixed;
	-webkit-background-size: cover; /* pour anciens Chrome et Safari */
	background-size: cover; /* version standardisée */
}

body {
  margin: 0;
  display: flex;
  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;
}
