@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Tangerine:wght@400;700&display=swap');

* {
	margin: 0%;
	padding: 0%;
}

body {
	background-repeat: no-repeat;
	background-position: center top fixed;
	background-image: url(images/back.jpg);
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#container {
	width: 90%;
	max-width: 1000px;
	overflow: hidden;
	margin: 2em auto;
	background-color: rgba(255,255,255,0.80);
}

header {
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: #a0522d;
	text-align: center;
}

header h1 {
	font-family: "Caudex", serif;
	font-size: 2em;
	color: white;
	text-transform: uppercase;
}

main {
	padding: 1em;
	overflow: hidden;
}

section {
	float: left;
	width: 31.3344%;
	padding: 1%;
}
main h2 {
	font-family: "Caudex", serif;
	font-size: 1.5em;
	color: #800000;
	padding: 0.7em 0;
}

main p {
	font-family: "Tangerine", cursive;
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.3;
	text-align: left;
	margin-bottom: 1em;
}


.colonne img {
	width: 100%;
	height: auto;
	vertical-align: bottom;

}


footer {
	background-color: #a0522d;
	padding: 2%;
}

footer p {
	font-family: "Caudex", serif;
	color: white;
	text-align: right;

}

footer p a {
	color: white;
	text-decoration: none;
}

footer p a:hover {
}

/********* version 667px *********/

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

	section {
		float: none;
		width: 98%;
		margin: 1em  0.1%;
	}

	header h1 {
	font-family: "Caudex", serif;
	font-size: 3em;
	line-height: 1.5;
	color: white;
	text-transform: uppercase;
	padding: 0 10%;
}

	main h2 {
	font-size: 2em;
	text-align: center;
}

	main p {
		font-size: 1.4em;
		line-height: 1.5;
		text-align: center;
	}
}

/********* version 414px *********/

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

	section {
		float: none;
		width: 98%;
		margin: 1em 0.1%;
	}

section img {
	display: none;
	}

	main h2 {
	font-size: 2em;
	text-align: center;
}

	main p {
		font-size: 1.5em;
		line-height: 1.5;
		text-align: center;
	}
}


