/* 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;
}

@font-face {
    font-family: 'LexendGigaVariableFont_wght';
    src: url('fonts/LexendGigaVariableFont_wght.eot');
    src: url('fonts/LexendGigaVariableFont_wght.eot') format('embedded-opentype'),
         url('fonts/LexendGigaVariableFont_wght.woff2') format('woff2'),
         url('fonts/LexendGigaVariableFont_wght.woff') format('woff'),
         url('fonts/LexendGigaVariableFont_wght.ttf') format('truetype'),
         url('fonts/LexendGigaVariableFont_wght.svg#LexendGigaVariableFont_wght') format('svg');
}

@font-face {
    font-family: 'MacondoSwashCapsRegular';
    src: url('fonts/MacondoSwashCapsRegular.eot');
    src: url('fonts/MacondoSwashCapsRegular.eot') format('embedded-opentype'),
         url('fonts/MacondoSwashCapsRegular.woff2') format('woff2'),
         url('fonts/MacondoSwashCapsRegular.woff') format('woff'),
         url('fonts/MacondoSwashCapsRegular.ttf') format('truetype'),
         url('fonts/MacondoSwashCapsRegular.svg#MacondoSwashCapsRegular') format('svg');
}

body {
	background-color: #e0E0E0;
}

.wrapper {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

header {
	text-align: center;
}


h1 {
    font-family: MacondoSwashCapsRegular;
	font-size: 80px;
	font-weight: 900;
	padding: 50px;
	color: #202020;
}

h2 {
	font-family: MacondoSwashCapsRegular;
	font-size: 30px;
	padding: 10px;
	color: #404040;
}

.cartouche {
	padding: 50px;
	display: flex;
	align-items:center;
	justify-content: space-around;

}

.element img {
	border-radius: 50%;
	width: 	80%;
	margin-left: 20px;
	border: solid 5px transparent;
}

.element img:hover {
	border: solid 5px #202020;
}

h3 {
	color: #202020;
	font-family: MacondoSwashCapsRegular;
	font-size: 14px;
	text-align: center;
	padding: 20px;
}


.logo>a>img {
width: 200px;
margin-left: 30px;
}


p {
	color: #202020;
	text-decoration: none;
	text-align: center;
	font-family: MacondoSwashCapsRegular;
	font-size: smaller;
}

a {
	text-decoration: none;
}


@media screen and (max-width: 510px) {

	.cartouche {
flex-wrap: wrap;
flex-direction: column;

}

}
    