/*__Start clean__*/
	html, body, div, span, h1, h2, h3, h4, h5, h6, p, footer, header {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

/*__font__*/
@font-face {
  font-family: 'ubuntu';
  font-style: normal;
  src: url('./font/Ubuntu-R.ttf');
}

/*__Body__*/
body {
	/* font: normal 87.5%/1.4 Arial, sans-serif; */
	font-family:ubuntu;
	color:white;
	background-color: #4188D3;
	-webkit-background-size: cover; /* pour Chrome et Safari */
	-moz-background-size: cover; /* pour Firefox */
	-o-background-size: cover; /* pour Opera */
	background-size: cover; /* version standardisée */
	background-size: cover !important; 
	background: no-repeat center fixed;
	
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	padding:6em 4em 4em;

}
/*__Links__*/
a {
    margin:0;
    padding:0;
    border:0;
    text-decoration: none;
    font-weight:bold;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
	color:rgba(255, 255, 255, 0.25);

}
a:hover
{
    color:white !important;
	
}


/*__Div__*/

div {
	max-width: 80em;
	margin:0 auto;
	background-color: rgba(0, 0, 0, .7);
	padding: 1em;
	border-radius:10px;
}

/*__Date__*/
.date {
	text-transform: capitalize;
	text-align: center;
	position:relative;
	display:block;
}


/*__Citation__*/
.citation {
	padding: 3em;
	margin: 1em auto;
	position:relative;
	display:block;
}

.sentence {
	font-size: 200%;
	font-weight: 700;
	line-height: 1.5em;
	margin: 0 0 1em 0;
}
.source {
	text-align: right;
	font-size: 1.35em;
	line-height: 1.65em;
	color: rgba(255, 255, 255, 0.5);

}
author { 
	font-size: 1em;
	font-weight: bold;
}

book {
	font-style: italic;
}

/*__Footer__*/

.footer {
	text-align: center;
	position:relative;
	display:block;
	font-weight:normal;
	letter-spacing:.15em;
	font-size:0.7em;
}



