/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, strong, 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;
}

*{
    box-sizing: border-box;
}


body {
    font-family: times,serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background:#151515;
	padding:20px;
	
}

.wrapper {
	width: 95%;
	max-width: 1440px;
	margin: 0 auto;
	background-image: url(images/fond.jpg);
	padding:20px;
	border-radius:20px;
	min-height:700px;
	
}

.container {
    text-align: center;
}
img {
	width: 100%;
    max-width: 700px;
    max-height: 700px;
    
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#randomImage {
	border-radius: 50%;
	border: black solid 5px;
}

h1 {
	color:white;
	text-align:center;
	font-size:3em;
	margin-bottom:30px;
}

h2 {
    font-size: 1.2em;
    margin-top: 15px;
    color: #fff;
}

h3 {
    font-size: 0.8em;
    margin-top: 15px;
    color: #808080;
    line-height: 22px;
   
}

p {
    display: block;
    background-color: #000000;
    padding: 25px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.0em;
    margin-top: 10px;
    color: #909090;
    width: 80%;
    max-width: 800px;
    line-height: 22px;
	font-size: 0.8em;
}

h5 {
	display:inline;
	color:white;
	
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #550a0a;
}

.logo {
    width:150px;
	margin-top:150px;
    
} 

.banner {
    width: 95%;
    min-height: 60vh;
    background-image: url(images/fond01.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.button {
    display: block;
    padding: 25px;
    background-color: #101010;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.button:hover {
    background-color: #550a0a;
    color: #ffffff;
}

.legales {
    display: inline;
    background-color: none;
    color: #808080;
    font-size: 9px;
    text-decoration: none;
}

footer {
	text-align:center;

}

.fondblanc {
	max-width:150px;
	background-color:white;
	border-radius: 15px;
}

.flex {
	display:flex;
	justify-content: space-around;
	align-items:center;
	}
	
.bulle {
	border-radius:50%;
	border: solid #000000 5px;
	margin-top: 50px;
	margin-bottom; 50px;
	width: 100%;
	max-width:100px;
}	


@media screen and (max-width: 510px) {
	
	.wrapper {
		width: 100%;
		margin: 0 auto;
		background-image: url(images/fond.jpg);
		padding:5px;
		border-radius:0px;
		min-height:700px;

	}
	
	h1 {
		font-size:2em;
		margin-bottom:20px;
	}

	.bulle {
		border: solid #000000 2px;
			max-width:25px;
		}


}