body
{
	padding: 0;
	margin: 0;
	background-color: black;

}

@font-face {
	font-family: 'RobotoSlab';
	src: url('fonts/RobotoSlab-Regular.ttf');
}

@font-face { font-family: "RobotoSlab-Bold";
	src: url('fonts/RobotoSlab-Bold.ttf');
	font-weight: bold;
}

strong {
    font-family: "RobotoSlab-Bold";
    font-weight: bold;
}

@font-face { font-family: "RobotoSlab-Light";
	src: url('fonts/RobotoSlab-Light.ttf');
}

em {
	font-family: "RobotoSlab-Light";
    font-style: : italic;
}

@font-face { font-family: "RobotoSlab-Thin";
	src: url('fonts/RobotoSlab-Thin.ttf');
}

p {
	font-weight: normal;
	font-size: normal;
	font-family:'RobotoSlab';
	color:#000;
	text-align:justify;
	font-size: 1.1em;
	line-height: 1.4em;
	
}

@media (max-width: 1000px){
	p {
	font-size: 0.5em;
	}
}

a {text-decoration: none; color: #666666; font-size:1.1em; line-height: 1.4em;}
a:visited {text-decoration: none; color: #666666;}
a:hover {text-decoration: none; color: #999999;}
a:active { text-decoration: none; color: #666666;}

canvas
{
	z-index: -2;
	position: absolute;
	top: 0;
	left: 0;
	cursor: url("hand.png"), pointer;
}

main {
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: url("hand.png"), pointer;
	/*background-color: rgba(255,0,0,0.5);
	border: 1px; border-style: solid; border-color:#FF0000;*/
}

@media (max-width: 1000px){
	main {width: 100%;}
}

article {
	position: absolute;
     margin-top: 45vh; /* poussÃ© de la moitiÃ© de hauteur de viewport */
    transform: translateY(-45%); /* tirÃ© de la moitiÃ© de sa propre hauteur */
	width: 55%;
	padding: 20px;
	background-color: rgba(255,255,255,0);
	pointer-events: none;
	/*background-color: rgba(255,0,0,0.5);*/
}

@media (max-width: 1000px){
	article {
	width: 100%;
	padding: 5px;
	}
}

.petit {
	font-family: RobotoSlab-Thin;
	font-size: 0.6em;
	line-height: 3em;
}

@media (max-width: 1000px){
	.petit {
	font-size: 0.3em;
	}
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}