@font-face {
font-family: "anciaux";
src: url('anciaux.ttf');
}
.parent {
  position: relative;
}
.enfant {
  position: absolute;
  top: 50%; /* poussé de la moitié de hauteur du référent */
  transform: translateY(-50%);
}
a:link, a:active 
{ 
  color: white; 
  text-decoration: none; 
} 
 
a:visited 
{ 
  color: white; 
  text-decoration: none; 
} 
 
a:hover 
{ 
  color: white; 
  text-decoration: none;  
} 
 
a.autre:link, a.autre:active 
{ 
  color: white; 
  text-decoration: none;  
} 
 
a.autre:visited 
{ 
  color: white; 
  text-decoration: none; 
} 
 
a.autre:hover 
{ 
  color: white; 
  text-decoration: none; 
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #000;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
}
body.o-start #canvas {
  cursor: none;
}

#message {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: anciaux;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms;
}
body.o-start #message {
  opacity: 1;
}
