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;
	font-family: 'Jockey One', sans-serif;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow-x: visible;
	overflow-y: scroll;
	padding-bottom: 50px;
}
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;
}
a {
	text-decoration: none;
	color: inherit;
}
br
{
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
/* FIN DU CSS RESET */
::-moz-selection { /* Code for Firefox */
	color: blue;
	text-decoration: underline 1px blue;
	background: none;
}
  
::selection {
	color: blue;
	text-decoration: underline 1px blue;
	background: none;
}

h1, h2, h3, p {
	color: #ebebeb;
}

html, body {
	max-width: 100%;
    overflow-x: hidden;
}

html.i18n-loading body { visibility: hidden; }

body {
	background-color:#121213;
	border-style: solid;
	border-width: 18px;
	border-color: #351255;;
	border-bottom: none;
	min-height: 100vh;
	box-sizing: border-box;
}

.container {
	max-width: 100%;
    overflow: hidden;
	padding-bottom: 4%;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex-container > div {
	border: solid 3px #ebebeb;
	border-radius: 5px;
	width: 47%;
	min-width: 300px;
	margin: 10px;
   	display: flex;
   	flex-direction: column;
}

.flex-container > div *{
	padding-bottom: 1%;
	padding: 10px;
}

.flex-container > div > small {
	font-size: 25px;
}

.flex-container > div .desc {
	font-family: 'Roboto Condensed', sans-serif;
	color:lightgray
}

.flex-container > div .specs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-top: solid 2px #ebebeb;
	align-items: center;
	margin-top: auto;
}

.flex-container > div .specs > p{
	margin: 0 3%;
	color:#d7c0e1
}

.left {
	display: block;
	text-align: left;
	margin-left: 0;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.dark {
	color:#d7c0e1
}

small {
	color: #ebebeb;
}

footer {
	padding-top: 1%;
	padding-bottom: 1%;
	text-align: center;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	
	background-color: #351255;;
}

.name {
	color: white;
}

.header {
	padding-top: 50px;
}

.contactfield {
	font-size: 50px;
	padding: 20px 40px 0px 40px;
}

a {
	color:blueviolet;
	text-decoration: underline;
}

.subtitle {
	padding: 50px 0 20px 0;
	color:#d7c0e1
}

footer p {
	color: #7626c2;
	text-align: center;
}

footer a {
	color: #7626c2;
}

a small:hover  {
	color: #cfcfcf;
	text-decoration: underline #cfcfcf;
}

.langChange {
	text-decoration-line: underline;
	text-decoration-color: white;

	-webkit-text-decoration-line: underline;
	-webkit-text-decoration-color: white;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #351255;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #7626c2;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #5e1b9c;
  }

/*Mobile*/
@media all and (max-width: 500px){
	.container {
		margin: 2% 2%;
	}
	p {
		font-size: 20px;
		text-align: justify;
	}
	
	h1 {
		font-size: 70px;
	}
	
	h2 {
		font-size: 50px;
	}
	
	h3 {
		font-size: 30px;
	}

	.flex-container > div > img {
		width: 90%;
		height: 150px;
		border-radius: 2em;
		top: 100%;
		object-fit: cover;
	}
}

/*PC*/
@media all and (min-width: 500px) {
	.container {
		margin: 2% 10%;
	}
	p {
		font-size: 20px;
		text-align: justify;
	}
	
	h1 {
		font-size: 130px;
		
	}
	
	h2 {
		font-size: 100px;
	}
	
	h3 {
		font-size: 50px;
	}

	.flex-container > div > img {
		width: 80%;
		height: 300px;
		border-radius: 2em;
		top: 100%;
		object-fit: cover;
	}
}