/* Feuille de style du Turfu */

/* 	truc -> balise
	.kekchose -> class
	balise.kekchose -> class dans la balise
	#autchose -> id
	
	A modifier en SCSS ? */

/* import police de cractère Roboto de chez Google */

@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic");

/* on applique à tout */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: "Roboto", Helvetica, sans-serif;
	box-sizing: border-box; /* important pour etre full responsive */
}

/* Balise BODY */
body {
	font-size: 15pt;
	font-weight: 100;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.body_accueil {
	background-image: linear-gradient(to top, rgba(143,188,143,1), rgba(23,97,160,1));
	text-align: center;
}

.body_secondaire {
	background-image: linear-gradient(to top, rgba(83,82,102,1), rgba(23,97,160,1));
}

/* Balise A */
a {
	text-decoration: none;
	transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
	color: #FFFFFF;
}
	a:hover {
		color: #74D14C;
		border-bottom: dotted 1px;
		border-radius: 10px;
	}

/* Balise Titre H1 */
h1 {
	padding: 1.5em 0 1.5em 0;
	font-size: 1.6em;
	font-weight: 300;
	line-height: 1.5em;
	text-align: center;
	letter-spacing: -0.025em;
	color: white;
	margin: 0 0 1em 0;
/*	display: inline-block;*/
	border-style: solid;
	border-width: 0 0 2px 0;
	border-color: #e44c65;
}

/*	h1 .texteH1 {
		padding: 1.5em 0 1.5em 0;
		border-style: solid;
		border-color: #e44c65;
		border-width: 0 0 2px 0;
	}*/

/* Balise Titre H2 */
h2 {
	padding: 1.5em 0 0 0;
	color: white;
	font-size: 1.2em;
	font-weight: 300;
	line-height: 1.5em;
	margin: 0 0 1em 0;
}

/* Balise Titre H3 */
h3 {
	
}

@keyframes blink_savoir_plus {
    0% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

.blink_image {
	animation: blink_savoir_plus normal 5s infinite ease-in-out;
}

.en_gras {
	font-weight: 300;
	font-size: 1.1em;
}

/* Classe de page complete */
.page_complete {
	animation-name: fondu;
	animation-duration: 1s;
	height: 100%;
}

@keyframes fondu {
	from {opacity: 0;}
	to {opacity: 1;}
}

/* Classe de lien */
.lien {
	padding: 1.6em;
	border-width: 2px;
	border-style: solid;
	border-bottom: solid 2px;
}
