* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: arial;
    color: rgb( 11, 86, 117 );
}

body {
    font-family: arial;
    margin: 0;
    padding: none;
    background-color: #000;
    color: rgb( 28, 78, 104 );
    overflow: hidden;
}

/* Links */
a {
    text-decoration: none;
}
a:link {
    color: rgb( 233, 73, 154 );
}
a:visited {
    color: rgb( 110, 30, 71 );
}
a:hover {
    color: rgb( 252, 207, 230 );
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
#loadingCanvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* S'assure qu'il est au-dessus */
    background-color: rgb(142, 195, 227);
}

#canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    visibility: hidden;
}
