/* Cachoux styles */

/* CSS RESET
	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.7;
}

/* Fonts */
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('fonts/montserrat-v25-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Cachoux styles */
.container {
	height: 100vh;
	padding: 5%;
	width: 100%;
	background: url(images/bg.jpg) no-repeat center/cover;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	align-content: center;
	justify-content: center;
	color: #fff;
	flex-direction: column;
}
.overlay {
	border-image: fill 0 linear-gradient(#0003,#00000059,#000);
}
.inner-content {
	max-width: 1000px;
	margin-inline: auto;
	padding-top: 4em;
}
a {
	color: #fff;
	vertical-align: middle;
}
p {
	font-size: 30px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin: 0 0 1em;
  text-shadow: 1px 1px 4px black;
}
p.coordonnees {
	line-height: 1.3;
}
.adresses-mail {
	font-size: 0.8em;
	display: inline-block;
}

@media screen and (min-width: 480px) and (max-width: 1199px) {
	p {
		font-size: 23px;
	}
}
@media screen and (max-width: 479px) {
	p {
		font-size: 18px;
	}
}