/* Reset
// ---- ---- ---- ---- ---- ---- ---- ---- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* remove dotted border at firefox and ie */
*:focus { 
	outline: none; 
}
a {
    outline:none; /* FF1.5+ IE7+*/
}

/* supprimer les effet de padding et border qui s'ajoute à la largeur des box */
 * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
 

/* Page
// ---- ---- ---- ---- ---- ---- ---- ---- */

body, #body{
	display: block;
	position: relative;
	height: 100vh;
	margin: 0;
	padding-top: 3rem;
	
	//background-image: url(/tigre-dragon_ancien_style.jpg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
		
	font-size: 1rem;
	font-family: Helvetica,Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


header {
	
	text-align: center;
}

#content{
	width: 70%;
	margin: auto;
}

#raccourcis{
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 1rem 0;
}

.grid{
	display: inline-block;
	width: 100%;
	height: auto;
	padding: 1rem;
	background-color: rgba(255,255,255,0.7);
	border-radius: 15px;
}

.grid  div{
	display: inline-block;
	width: calc(100%/4);
	float: left;
	padding: 0 0.5rem;
	
}

h1{
	font-weight: bold;
	font-size: 2rem;
	color: #125331
}

h2{
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

li {
/* 	margin-left: -2.3rem; */
	line-height: 2rem;
}

a:link, a:visited{
	text-decoration: none;
	color: inherit;
}

a:hover, a:active{
	color:#3e9352;
}

.button,button{
	padding: 0.7rem;
	font-size: 1rem;
	background-color: #125331;
	border: none;
	border-radius: 8px;
	color: white;
	font-weight: bold;
	margin: 0 0.5em;
}

footer, #footer{
	display: block;
	width: 100%;
}