<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background-color: #FFFFFF;
	margin: 0;
	display: flex;

	/* This centers our sketch horizontally. */
	justify-content: center;

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


}

@font-face {
	font-family: 'Sanchez';
	src: url("fonts/Sanchez-Regular.ttf") format("truetype");
}

@font-face {
	font-family: 'Sanchez-Italic';
	font-style: italic;
	src: url("fonts/Sanchez-Italic.ttf") format("truetype");
}

@font-face {
	font-family: "wash-care";
	src: url('fonts/wash-care.ttf') format("truetype");
}


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



/* -------------------------------------- CANVAS -------------------------------------------------------------------- */

#animation{
	width: 100% !important;
	height: 100% !important;
	z-index: 100;
	position: absolute;
	top: 50%;
	left: 50%;
	/*background-color: rgba(255, 0, 255, 0.3) !important;*/

	-ms-transform: translate(-50%,-50%); /* IE 9 */
	-webkit-transform: translate(-50%,-50%); /* Safari &lt;= 9.0 */
	transform: translate(-50%,-50%); /* std syntax */
}


@media only screen and (max-device-width: 1000px){
	#animation{
		width: 100% !important;
		top: 0;
		left: 0;
		transform: none;
	}
}

@media (max-width: 1000px){
	#animation{
		width: 100% !important;
		top: 0;
		left: 0;
		transform: none;
	}
}

canvas
{
	/*background-color: rgba(0, 0, 255, 0.3) !important;*/
	background : transparent;
	pointer-events: none;

}

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


/* -------------------------------------- CONTENU -------------------------------------------------------------------- */

main {
	margin-top: 0%;
	width: 50%;
	margin-left : auto;
	margin-right : auto;
	position : relative;
}

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

#texte {
	margin: 10px;
}



p {
	font-family: Sanchez;
	color: #000;
	font-size:auto;
	text-align: justify;
}

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

.manque {
	font-family: Garamond;
	font-size: 1em;
	line-height: 1.2em;
}

.wash {
	font-family: 'wash-care', wingdings;
}

</pre></body></html>